/* Modern Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #673de6;
    --dark: #1d1e20;
    --light: #ffffff;
    --success: #2ecc71;
    --maroon: #800000;
    --font-body: 'Roboto', sans-serif;
    --font-heading: 'Bebas Neue', sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark);
    background: #f8f9fa;
}

/* Header Navigation */
.header {
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
    margin-top: 70px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: var(--primary);
    color: var(--light);
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    background: var(--success);
}

.btn:hover {
    transform: translateY(-2px);
}

/* Contact Form Styles */
.contact-blur {
    background: rgba(128, 128, 128, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
}

.maroon-btn {
    background: var(--maroon);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.form-input {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    padding: 0.8rem;
    width: 100%;
    margin-bottom: 1rem;
}

/* Cards & Grid System */
.grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.card {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 2rem;
    text-align: center;
}

/* Image Size Control */
.service-image, .pricing-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

/* Map Container */
.map-container {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}