/* style.css */
:root {
    --primary: #ea580c; /* Professional Burnt Orange */
    --primary-dark: #c2410c;
    --secondary: #fff7ed; /* Light Orange Background */
    --white: #ffffff;
    --text-dark: #1f2937; /* Charcoal for readability */
    --text-light: #4b5563;
    --bg-light: #f9fafb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.8;
}

/* --- Header --- */
header {
    background: var(--white);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--primary);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -1px;
}

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

nav a {
    color: var(--text-dark);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.btn-login {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 12px 30px;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-login:hover {
    background-color: var(--primary-dark);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
    padding: 100px 5%;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-button {
    background-color: var(--primary);
    color: var(--white);
    padding: 18px 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.3);
    transition: transform 0.2s;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: var(--primary-dark);
}

/* --- Services Section --- */
.services {
    padding: 100px 5%;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.service-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid var(--primary);
    transition: transform 0.3s;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* --- Content Pages Styling --- */
.content-page {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
}

.content-page h1 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.content-page h2 {
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.content-page p {
    margin-bottom: 20px;
    color: var(--text-light);
    text-align: justify;
}

/* --- Footer --- */
footer {
    background: var(--text-dark);
    color: #9ca3af;
    padding: 60px 5% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 10px;
}

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

.disclaimer {
    border-top: 1px solid #374151;
    padding-top: 20px;
    font-size: 0.85rem;
    text-align: center;
    color: #6b7280;
}

/* --- Login --- */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff7ed;
}

.login-box {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary);
}

.login-box input {
    width: 100%;
    padding: 15px;
    margin: 10px 0 25px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
}

.login-box button {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
}