:root {
    --primary-color: #0f172a; /* Navy dark */
    --secondary-color: #b8860b; /* Dark Goldenrod - Elegant */
    --accent-color: #f8fafc; /* Light gray */
    --text-color: #334155;
    --light-text: #f1f5f9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-modern: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.mt-4 { margin-top: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.text-sm { font-size: 0.9rem; }

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: var(--font-modern);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-slogan {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-style: italic;
}

.hero-sub {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 300;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #9a7009;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 1rem auto 0;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.check-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.check-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.mission-vision-box {
    background: #fff;
    padding: 1.5rem;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.mission-vision-box h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.mission-vision-box p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Values */
.values-section {
    background-color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.value-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9rem;
}

/* Services */
.services {
    background-color: var(--accent-color);
}

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

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.service-list li::before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Essence/Approach */
.approach {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
}

.approach h2 {
    color: #fff;
}

.approach p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

/* Contact */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

/* Footer */
footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #1e293b;
}

footer p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simple mobile hide for now */
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-slogan {
        font-size: 1.4rem;
    }
}
