/* Modern Dukoria Theme Styles - Dark Edition */
:root {
    /* Brand Colors - Emulating Screenshot */
    --color-bg-body: #0c120f;   /* Very Dark Green/Black */
    --color-bg-surface: #131c17; /* Slightly lighter for cards */
    --color-primary: #ffffff;   /* White Text */
    --color-secondary: #a0a5a2; /* Muted Gray Text */
    --color-accent: #4cd964;    /* Vibrant Green (Dot/Badge) */
    --color-border: #1f2e26;    /* Subtle border */
    
    --color-bg-header: rgba(12, 18, 15, 0.9); /* Dark semi-transparent */
    --color-overlay: rgba(0, 0, 0, 0.6); /* Darker overlay */
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Base Setup */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-body);
    color: var(--color-secondary);
    font-family: var(--font-main);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(circle at 15% 50%, rgba(74, 222, 128, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(74, 222, 128, 0.05) 0%, transparent 25%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em; 
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.modern-grid {
    display: grid;
    gap: var(--spacing-md);
}

.modern-flex {
    display: flex;
    align-items: center;
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

/* Header */
.site-header {
    background-color: var(--color-bg-header);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-sm) 0;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-area img {
    height: 40px;
    width: auto;
    /* Invert logo if it's black text, assuming PNG might need help */
    /* filter: invert(1) brightness(100); - Optional if logo is dark */ 
}

.site-title h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.site-title p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--color-accent);
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--spacing-md);
}

.main-navigation a {
    color: var(--color-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem;
}

.main-navigation a:hover {
    color: var(--color-primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider-wrapper {
    width: 100%;
    position: relative;
}

/* Dark Overlay for Slider */
.hero-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--color-bg-body) 100%), rgba(0,0,0,0.5); /* Gradient fade to body */
    pointer-events: none;
    z-index: 1;
}

/* Our Clients Slider Overlay - Matches the section */
.clients-slider-wrapper {
    position: relative;
    padding: var(--spacing-sm) 0;
    border-radius: 8px;
    overflow: hidden;
}

.clients-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle overlay to blend logos if they have white backgrounds, or just unify tone */
    background: rgba(12, 18, 15, 0.4); 
    pointer-events: none;
    z-index: 1;
}

.metaslider {
    z-index: 0;
}

/* Cards / Content Boxes */
.card-modern {
    background-color: var(--color-bg-surface);
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    border: 1px solid var(--color-border);
}

.card-modern:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card-modern h4 {
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* Buttons */
.btn-modern {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    border-radius: 50px; /* Pill shape */
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    letter-spacing: 0.5px;
}

.btn-modern:hover {
    background-color: var(--color-accent);
    color: #000000; /* Contrast on green */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 217, 100, 0.2);
}

/* Footer */
.site-footer {
    background-color: #080c0a; /* Slightly darker than body */
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Force 3 columns on desktop for 2 rows */
    gap: var(--spacing-md);
}

.footer-col h4 {
    color: var(--color-primary);
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--color-secondary);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.copyright-bar {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
    color: var(--color-secondary);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Layout Utilities specific to Single Pages */
.content-centered {
    max-width: 900px; /* Optimal reading width */
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-sm);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cols on tablet */
    }
}

/* Contact Page Grid Layout */
.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.contact-grid-layout > address {
    margin-bottom: 0; 
    /* Card Style */
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-grid-layout > *:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

/* Auto-Icons for Contact Links */
.contact-grid-layout a[href^="tel:"]::before {
    content: '\f095'; /* fa-phone */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--color-accent);
}

.contact-grid-layout a[href^="mailto:"]::before {
    content: '\f0e0'; /* fa-envelope */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--color-accent);
}

/* Generic Location Icon assumption: First paragraph often is address */
.contact-grid-layout p:first-of-type::before {
    content: '\f3c5'; /* fa-location-dot */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .contact-grid-layout {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Button (Hidden on Desktop) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: row; /* Keep row for logo + toggle */
        justify-content: space-between;
    }
    
    .menu-toggle {
        display: block;
    }

    .main-navigation ul {
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        width: 100%;
        background: rgba(12, 18, 15, 0.95); /* Dark background matching header */
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

    .main-navigation ul.toggled {
        display: flex;
    }
    
    .main-navigation a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .footer-grid {
        grid-template-columns: 1fr; /* 1 col on mobile */
    }
}
