/* Ash Valor LLC - Main Stylesheet */

/* ==================== */
/* Reset & Base Styles  */
/* ==================== */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ==================== */
/* Header               */
/* ==================== */

header {
    background: white;
    color: #2c3e50;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 3px solid #3498db;
}

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

.header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    height: 80px;
    width: auto;
    flex-shrink: 0;
}

.header-text {
    flex: 1;
    text-align: left;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: #2c3e50;
}

.slogan {
    font-size: 1.1rem;
    font-style: italic;
    margin-top: 0.3rem;
    color: #3498db;
}

/* ==================== */
/* Hero Section         */
/* ==================== */

.hero {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    color: white;
    opacity: 0.95;
}

/* ==================== */
/* Content Sections     */
/* ==================== */

section {
    padding: 3.5rem 0;
}

section:nth-child(even) {
    background-color: #f8f9fa;
}

section:nth-child(odd):not(.hero) {
    background-color: white;
}

h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #3498db;
    padding-bottom: 0.5rem;
    display: inline-block;
}

h3 {
    color: #34495e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* ==================== */
/* Services Grid        */
/* ==================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-item::before {
    content: "✓";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 10px;
    font-weight: bold;
}

/* ==================== */
/* Technology Box       */
/* ==================== */

.tech-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

/* ==================== */
/* Methodology Highlights */
/* ==================== */
.method-highlights {
    margin-top: 1.5rem;
}

.method-highlights h3 {
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-size: 1.25rem;
}

.method-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.method-item {
    background: white;
    padding: 0.9rem 1rem;
    border-radius: 6px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    border-left: 4px solid #3498db;
    display: flex;
    align-items: center;
}

.method-item::before {
    content: "●";
    color: #3498db;
    font-weight: 700;
    margin-right: 0.75rem;
    font-size: 1rem;
}

/* ==================== */
/* Contact Section      */
/* ==================== */

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
}

.contact-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ==================== */
/* Footer               */
/* ==================== */

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* ==================== */
/* Responsive Design    */
/* ==================== */

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-text {
        text-align: center;
    }

    .logo {
        height: 60px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .slogan {
        font-size: 1rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}