:root {
    /* Brand Colors */
    --primary-orange: #FF6600;
    --primary-dark: #2C3E50;
    --text-grey: #555555;
    --light-grey: #ecf0f1;
    --white: #FFFFFF;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--primary-dark);
    line-height: 1.6;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Layout Utility --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* --- Header (Clean & Aligned) --- */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-bar {
    display: flex;
    justify-content: space-between; /* Pushes Logo Left, Contacts Right */
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-contact {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-phone {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-dark);
    text-decoration: none;
    line-height: 1.2;
}

.nav-email {
    font-size: 0.9rem;
    color: #888;
    text-decoration: none;
    margin-top: 2px;
}

/* --- Hero Section --- */
.hero {
    /* Subtle grey gradient for depth */
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%); 
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(255, 102, 0, 0.2);
}

.btn:hover {
    background-color: #e65c00;
    transform: translateY(-1px);
}

.hero-image img {
    max-width: 100%;
    height: auto;
    /* Soft shadow to lift image off background */
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

/* --- Features Section --- */
.features { padding: 80px 0; }

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

.feature-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}
.feature-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

/* --- Minimal Footer --- */
footer {
    background-color: var(--primary-dark);
    color: #b0b8bf; /* Softer grey text, not pure white */
    padding: 60px 0 30px;
    margin-top: auto;
    font-size: 0.95rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col p { margin: 5px 0; }

/* Links styling - Removes the ugly blue */
.footer-links a {
    display: block;
    color: #b0b8bf;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    font-size: 0.8rem;
    color: #637b8b; /* Darker grey for legal text so it fades back */
    line-height: 1.5;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .nav-bar { height: auto; padding: 15px 24px; flex-direction: column; gap: 10px; }
    .nav-contact { text-align: center; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-top { flex-direction: column; gap: 40px; }
    .logo { margin-bottom: 5px; }
}