/* ================= RESET ================= */
* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background: #f4f6f8;
    overflow-x: hidden;
    padding-bottom: 70px; /* prevents sticky bar overlap */
}

/* ================= VARIABLES ================= */
:root {
    --primary: #e67e22;
    --dark: #1e2a44;
    --text: #2c3e50;
    --light: #f8f9fa;
}

/* ================= HEADER ================= */
.site-header {
    background: white;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1100px;
    margin: auto;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    max-width: 140px;
}

.hamburger {
    display: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text);
    font-weight: bold;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: bold;
}

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

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 16px;
    border-radius: 6px;
}

/* ================= LAYOUT ================= */
.section {
    max-width: 1100px;
    margin: 15px auto;
    padding: 25px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.section-light {
    background: var(--light);
}

.text-center {
    text-align: center;
}

/* ================= HERO ================= */
.hero {
    background: url('images/van.png') center/cover no-repeat;
    color: white;
    text-align: center;
    position: relative;
    padding: 80px 20px;
}

.hero.small {
    padding: 50px 20px 40px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* ================= BUTTONS ================= */
.cta-button {
    display: inline-block;
    padding: 14px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    margin: 5px;
    transition: 0.2s ease;
}

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

.cta-light {
    background: rgba(255,255,255,0.9);
    color: var(--text);
}

.cta-button:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

/* ================= TRUST BAR ================= */
.trust-bar {
    text-align: center;
    font-weight: bold;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.testimonials blockquote {
    position: relative;
    margin: 0;
    padding: 20px;
    background: #f8f9fa;
    border-left: 5px solid var(--primary);
    border-radius: 8px;
}

.testimonials p {
    margin-top: 0;
}

.testimonials cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-weight: bold;
    color: var(--primary);
}

/* ================= GALLERY ================= */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.gallery img,
section img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

/* ================= FORM ================= */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.floor-group {
    display: none;
}

.full-width {
    grid-column: 1 / -1;
}

label {
    font-weight: 600;
    margin-bottom: 6px;
}

input,
select,
textarea {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
    outline: none;
}

.submit-btn {
    background: var(--primary);
    color: white;
    padding: 16px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    width: 100%;
    margin-top: 20px;
    cursor: pointer;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* ================= CALL SECTION ================= */
.call-section {
    text-align: center;
}

.big-phone a {
    font-size: 22px;
    text-decoration: none;
    color: var(--primary);
}

/* ================= FOOTER ================= */
footer {
    background: var(--dark);
    color: #ddd;
    text-align: center;
    padding: 50px 20px;
}

footer a {
    color: #4fc3f7;
    text-decoration: none;
}

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

/* ================= STICKY CALL ================= */
.sticky-call {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    z-index: 1000;
    text-decoration: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 15px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        gap: 8px;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 10px 0;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .section {
        margin: 12px 8px;
    }
}

/* ================= LARGE SCREENS ================= */
@media (min-width: 1200px) {
    .section {
        max-width: 100%;
        border-radius: 0;
        padding: 40px 8%;
    }
}