/*
 * Stylesheet for Elevate Closet & Storage Solutions LLC
 * Cleaned and streamlined version
 */

:root {
    --color-dark: #0A0F29;
    --color-gold: #D4AF37;
    --color-light: #F5F5F5;
    --color-neutral: #FFFFFF;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: var(--color-dark);
    color: var(--color-light);
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: transparent;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

    .logo img {
        height: 100px;
        max-height: 100px;
        width: auto;
        display: block;
        object-fit: contain;
        margin-left: 40px;
        transition: transform 0.35s ease, box-shadow 0.35s ease;
        position: relative;
    }

        .logo img:hover {
            transform: scale(2.0);
            z-index: 2000;
        }

nav ul {
    list-style: none;
    display: flex;
}

nav li + li {
    margin-left: 20px;
}

nav a {
    font-weight: 500;
    color: var(--color-neutral);
    transition: color 0.2s ease;
}

    nav a:hover {
        color: var(--color-gold);
    }

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

    .menu-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background: var(--color-light);
        margin: 5px 0;
        border-radius: 2px;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

/* Hero */
/*.hero {
    min-height: 100vh;
    background-image: url('images/Him.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--color-light);*/
    
    .hero {
    min-height: 100vh;
    background-image: url('images/Him.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--color-light);
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(10, 15, 41, 0.6);
    }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 80%;
}

.hero h1 {
    font-size: 2.7rem;
    margin-bottom: 0.1rem;
    color: var(--color-gold);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-light);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
    cursor: pointer;
}

    .btn.primary {
        background: var(--color-gold);
        color: var(--color-dark);
    }

        .btn.primary:hover {
            background: #b9972e;
        }

/* Sections */
section {
    padding: 80px 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--color-gold);
    text-align: center;
}

/* Services */
.services {
    background: var(--color-dark);
    text-align: center;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.service-item {
    background: #1a203f;
    padding: 30px;
    border-radius: 8px;
    width: 280px;
}

    .service-item h3 {
        color: var(--color-gold);
        margin-bottom: 15px;
    }

    .service-item p {
        font-size: 0.95rem;
        color: var(--color-light);
    }

/* Process */
.process {
    background: #11182f;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.process-step {
    background: #1a203f;
    padding: 20px;
    border-radius: 8px;
    width: 200px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.process-step h4 {
    color: var(--color-gold);
    margin: 10px 0;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--color-light);
}

/* Gallery */
.gallery {
    background: var(--color-dark);
    text-align: center;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery-item {
    width: 400px;
    height: 400px;
    border-radius: 8px;
    position: relative;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        position: relative;
        z-index: 1;
    }

    .gallery-item:hover img {
        transform: scale(1.6);
        z-index: 5;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
       
    }

/* About */
.about {
    background: #11182f;
    text-align: center;
}

    .about p {
        max-width: 800px;
        margin: 0 auto;
        color: var(--color-light);
        font-size: 1rem;
    }

/* Contact */
.contact {
    background: var(--color-dark);
    text-align: center;
}

    .contact p {
        max-width: 600px;
        margin: 0 auto 24px;
        color: var(--color-light);
    }

.contact-form {
    background: #11182f;
    padding: 42px;
    border-radius: 14px;
    max-width: 880px;
    margin: 32px auto 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step-card {
    text-align: left;
}

.step-title {
    color: var(--color-gold);
    margin-bottom: 18px;
    font-size: 1.2rem;
    text-align: center;
}

#step1 {
    max-width: 420px;
    margin: 0 auto;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

    #step1 button {
        display: block;
        margin: 25px auto 0;
    }

.project-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 220px;
}

    .option input {
        width: 18px;
        height: 18px;
        margin: 0;
        flex-shrink: 0;
    }

    .option span {
        line-height: 1.4;
    }

.step-next,
.contact-form button[type="submit"] {
    background: var(--color-gold);
    color: #0A0F29;
    padding: 16px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.step-next {
    align-self: center;
}

    .step-next:hover,
    .contact-form button[type="submit"]:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
        background: #c9a62f;
    }

.contact-row {
    display: grid;
    gap: 18px;
    margin-bottom: 10px;
}

    .contact-row.three-col {
        grid-template-columns: repeat(3, 1fr);
    }

.field {
    display: flex;
    flex-direction: column;
}

    .field label {
        margin-bottom: 8px;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--color-light);
        text-align: left;
    }

    .field input {
        width: 100%;
    }

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
    padding: 15px 16px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .contact-form input[type="text"]:focus,
    .contact-form input[type="email"]:focus,
    .contact-form input[type="tel"]:focus {
        outline: none;
        border-color: var(--color-gold);
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
    }

.form-section-title {
    color: var(--color-gold);
    font-size: 1.15rem;
    margin-bottom: 8px;
    text-align: left;
}

.form-section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    background: rgba(255, 255, 255, 0.04);
    padding: 18px 20px;
    border-radius: 12px;
    margin-top: 10px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.compact-group {
    margin-top: 2px;
}

.form-group h4 {
    color: var(--color-gold);
    margin-bottom: 12px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    line-height: 1.4;
}

.form-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
    align-items: center;
}

.consent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 520px;
    margin: 10px auto 0;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

    .consent input {
        width: 18px;
        height: 18px;
        cursor: pointer;
      /**  margin-top: 2px;
       * flex-shrink: 0px;
       */
    }

    .consent spane {
        color: var(--color-light);
    }

.hidden-botcheck {
    display: none;
}

/* Footer */
footer {
    background: #0a122b;
    color: var(--color-light);
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
}

    footer p + p {
        margin-top: 6px;
    }

/* Mobile */
@media (max-width: 768px) {
    .site-header {
        padding: 1rem;
    }

    .logo img {
        height: 80px;
        max-height: 80px;
        margin-left: 0;
    }

    .menu-toggle {
        display: block;
    }

    #site-nav {
        position: absolute;
        top: 100%;
        right: 1rem;
        width: 220px;
        background: rgba(10, 15, 41, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        padding: 12px 0;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
        display: none;
    }

        #site-nav.nav-open {
            display: block;
        }

        #site-nav ul {
            flex-direction: column;
            align-items: stretch;
            gap: 0;
        }

        #site-nav li + li {
            margin-left: 0;
        }

        #site-nav a {
            display: block;
            padding: 12px 18px;
            color: var(--color-light);
        }

            #site-nav a:hover {
                background: rgba(255, 255, 255, 0.06);
                color: var(--color-gold);
            }

    .hero {
    min-height: 100vh;
    height: auto;
    padding: 40px 20px;
    background-image: url('images/Him.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

        .hero h1 {
            font-size: 2rem;
        }

        .hero p {
            font-size: 0.95rem;
        }

    .service-grid,
    .process-steps,
    .gallery-grid {
        gap: 20px;
    }

    .service-item,
    .process-step,
    .gallery-item {
        width: 90%;
        height: auto;
    }

    .contact-form {
        padding: 24px;
    }

    .contact-row.three-col,
    .form-section-split {
        grid-template-columns: 1fr;
    }

    .project-options {
        align-items: center;
    }

    .option {
        width: 100%;
        max-width: 260px;
    }

    #step1 {
        max-width: 100%;
        padding: 20px;
    }
}


/* Thank You Page */

 body.thank-you-body {
    min-height: 100vh;
    margin: 0;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.thank-you-card {
    width: 100%;
    max-width: 640px;
    background: #11182f;
    border-radius: 14px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.thank-you-card h1 {
    color: var(--color-gold);
    margin-bottom: 16px;
    font-size: 2.2rem;
}

.thank-you-card p {
    color: var(--color-light);
    margin-bottom: 32px;
}