:root {
    --primary: #334155; /* Slate Blue */
    --primary-dark: #1e293b;
    --accent: #f97316; /* Vibrant Orange */
    --accent-red: #ef4444; /* Vibrant Red */
    --bg-alt: #cbd5e1; /* Light Slate / Muted Tealish Grey */
    --bg-light: #f1f5f9;
    --text-white: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --radius: 32px;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-alt);
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Header */
header {
    position: fixed;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(51, 65, 85, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 1.6rem;
    color: white;
    text-decoration: none;
    letter-spacing: -1px;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
}

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

.hero h1 {
    font-size: 4.5rem;
    color: var(--text-white);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 2rem;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.btn-accent {
    background: var(--accent);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.btn-accent:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.5);
}

.btn-cyan {
    background: #0ea5e9;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2rem;
    margin-left: 1rem;
    transition: all 0.3s;
}

.btn-cyan:hover {
    transform: scale(1.05);
}

.hero-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
    transform: rotate(2deg);
    transition: transform 0.5s;
}

.hero-image:hover img {
    transform: rotate(0deg) scale(1.02);
}

/* Info Sections */
.section {
    padding: 10rem 0;
}

.section-white {
    background: white;
    color: var(--text-dark);
}

.section-dark {
    background: var(--primary-dark);
    color: white;
}

.section-title {
    margin-bottom: 5rem;
    text-align: center;
}

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.section-title h2 span {
    color: var(--accent);
}

/* Feature Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.card {
    background: #f8fafc;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.card-img {
    height: 250px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 3rem;
}

.card-body h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

/* Testimonial Banner */
.testimonial-banner {
    background: var(--accent-red);
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.testimonial-banner p {
    font-size: 2.2rem;
    font-weight: 800;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.form-box {
    background: white;
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1.25rem;
    background: #f1f5f9;
    border: 3px solid transparent;
    border-radius: 20px;
    font-family: inherit;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    border-color: var(--accent);
    outline: none;
    background: white;
}

.submit-btn {
    width: 100%;
    background: var(--accent);
    color: white;
    padding: 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

/* Cities */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.city-pill {
    background: #e2e8f0;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    transition: all 0.3s;
}

.city-pill:hover {
    background: var(--accent);
    color: white;
}

footer {
    padding: 5rem 0;
    background: var(--primary-dark);
    color: white;
    text-align: center;
}

@media (max-width: 1024px) {
    .hero-grid, .contact-grid { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 3.5rem; }
    .btn-cyan { margin: 1rem 0 0 0; display: block; }
}
