:root {
    --bg-dark: #111111;
    --bg-darker: #0a0a0a;
    --text-light: #f9f9f9;
    --text-dark: #222222;
    --text-muted: #666666;
    --accent: #c8411b; /* Burnt orange/red matching logo */
    --accent-hover: #a13112;
    --card-bg: #ffffff;
    --border-color: #e5e5e5;
    
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-accent {
    color: var(--accent);
}

/* Header */
.site-header {
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-email {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    margin-right: 25px;
    transition: var(--transition);
}

.header-email:hover {
    color: var(--accent);
}

.logo-container {
    display: inline-flex;
    align-items: center;
}

.logo-container .logo {
    height: 55px; /* Size restored */
    width: auto;
    display: block;
    object-fit: contain;
    /* Professional white glow effect tracing the transparent PNG text/shapes */
    filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, 1)) drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.6));
}

.logo-fallback {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-main);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--text-light);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(200, 65, 27, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(200, 65, 27, 0.6);
}

.btn-block {
    display: block;
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 92px; /* offset header */
    background-image: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(140deg, rgba(10,10,10,0.92) 0%, rgba(20,20,20,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-text {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 45px;
    max-width: 90%;
    font-weight: 300;
}

.hero-contact-info p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #c0c0c0;
    font-weight: 500;
}

.phone-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.phone-large:hover {
    color: var(--accent);
}

.email-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-top: 15px;
    transition: var(--transition);
}

.email-hero:hover {
    color: var(--accent);
}

/* Form Card */
.form-card-wrapper {
    display: flex;
    justify-content: flex-end;
}

.form-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 45px 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    color: var(--text-dark);
}

.form-title {
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #111;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.row {
    flex-direction: row;
    gap: 18px;
}

.form-group.row .input-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fcfcfc;
    color: var(--text-dark);
}

input:focus {
    outline: none;
    border-color: var(--accent);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(200, 65, 27, 0.15);
}

input::placeholder {
    color: #a0a0a0;
}

.form-submit {
    margin-top: 15px;
}

.form-message {
    margin-top: 20px;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.site-footer {
    background-color: var(--bg-dark);
    padding: 35px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #666;
    font-size: 0.95rem;
}

.footer-email a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.footer-email a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        gap: 20px;
    }
    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 860px) {
    .site-header {
        padding: 12px 0;
    }
    
    .logo-container .logo {
        height: 50px;
    }

    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px;
    }
    
    .hero-contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .form-card-wrapper {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .form-card {
        padding: 35px 25px;
    }
    
    .form-group.row {
        flex-direction: column;
        gap: 18px;
    }
    
    .logo-container .logo {
        height: 40px;
    }
    
    .btn-outline {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .phone-large {
        font-size: 1.5rem;
    }
}
