:root {
    --primary: #0f172a;
    /* Navy */
    --secondary: #ea580c;
    /* Orange */
    --light: #f8fafc;
    --dark: #020617;
    --gray: #64748b;
    --font-main: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--primary);
    line-height: 1.6;
    background-color: var(--light);
}

/* Typography */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary);
    color: white;
    font-weight: 700;
    border-radius: 4px;
    transition: transform 0.2s, background 0.2s;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #c2410c;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.section-padding {
    padding: 5rem 0;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.logo span {
    color: var(--secondary);
}

.nav-cta {
    display: block;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1627552887431-d8c973a9855b?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Bar */
.trust-bar {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.trust-item {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    color: var(--secondary);
    width: 24px;
    height: 24px;
}

/* Services */
.services {
    text-align: center;
}

.section-title {
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    background: #fff7ed;
    color: var(--secondary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Why Choose Us (Fallback for Reviews) */
.why-choose {
    background: var(--primary);
    color: white;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
}

.why-item h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* CTA Form */
.cta-section {
    background: #fff;
    text-align: center;
}

.form-box {
    max-width: 600px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background: var(--dark);
    color: #94a3b8;
    padding: 3rem 0;
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }
}