/* ============================================================
   CONTACT-BUNDLE.CSS — Combined stylesheet for contact.html
   Generated from styles.css, contact.css to reduce render-blocking
   requests. Edit the source files above and ask Claude to
   regenerate this bundle, do not edit directly.
   ============================================================ */

/* ---- styles.css ---- */
:root {
    /* Electric green accent */
    --primary: #3B82F6;
    --primaryLight: #3B82F6;
    --primaryDark: #1e40af;
    --secondary: #3B82F6;
    --secondaryLight: #3B82F6;

    /* Dark base */
    --charcoal: #11150F;      /* primary/dark base */
    --offBlack: #1A1F17;      /* sections / cards */
    --lineColor: #2A3022;     /* borders / dividers */

    /* Text */
    --headerColor: #F4F6F2;       /* off-white headings on dark */
    --bodyTextColor: #C7CCC2;     /* readable light body text */
    --mutedText: #9CA39A;         /* secondary text */
    --bodyTextColorWhite: #F4F6F2;

    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Satoshi', sans-serif;
    background-color: var(--charcoal);
    color: var(--bodyTextColor);
}

/* Logo size override */

/* Barlow for nav and h1 */
#cs-navigation,
#cs-navigation .cs-logo,
#cs-navigation .cs-li-link,
#cs-navigation .cs-phone,
h1 {
    font-family: 'Barlow', sans-serif;
}

/* Capitalise nav and h1 */
#cs-navigation .cs-li-link,
#cs-navigation .cs-phone,
h1 {
    text-transform: uppercase;
}

*, *:before, *:after {
    box-sizing: border-box;
}

.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cs-topper::before {
    content: '';
    display: block;
    width: 3px;
    height: 1em;
    background: #3B82F6;
    border-radius: 2px;
    flex-shrink: 0;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: #ffffff;
    position: relative;
}

.cs-title span {
    color: var(--primaryLight);
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: rgba(255,255,255,0.85);
}

/* ---- contact.css ---- */
/*-- -------------------------- -->
<---        Contact Page         -->
<--- -------------------------- -*/

* { box-sizing: border-box; }

@media only screen and (min-width: 0rem) {
    body {
        margin: 0;
        padding: 0;
    }

    #contact-page {
        min-height: 100vh;
        background: radial-gradient(ellipse at 60% 40%, #1e3a8a 0%, #0f172a 55%, #11150F 100%);
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cp-card {
        background: #f0f4ff;
        border-radius: 1.25rem;
        padding: 1.25rem 1.5rem 1.1rem;
        width: 100%;
        max-width: 52rem;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    }

    .cp-heading {
        font-family: 'Barlow', sans-serif;
        font-size: clamp(1.35rem, 3.5vw, 2.25rem);
        font-weight: 800;
        color: #11150F;
        margin: 0 0 0.2rem;
        line-height: 1.15;
        text-transform: uppercase;
    }

    .cp-heading span {
        color: #3B82F6;
    }

    .cp-subtext {
        font-size: 0.875rem;
        color: #6b7280;
        margin: 0 0 0.75rem;
        line-height: 1.5;
    }

    .cp-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .cp-field--full {
        grid-column: 1 / -1;
    }

    .cp-input,
    .cp-textarea {
        width: 100%;
        padding: 0.65rem 0.875rem;
        border: 2px solid #e5e7eb;
        border-radius: 0.5rem;
        font-family: 'Satoshi', sans-serif;
        font-size: 0.9rem;
        color: #11150F;
        background: #ffffff;
        transition: border-color 0.2s;
        outline: none;
    }

    .cp-input::placeholder,
    .cp-textarea::placeholder {
        color: #9ca3af;
    }

    .cp-input:focus,
    .cp-textarea:focus {
        border-color: #3B82F6;
    }

    .cp-textarea {
        resize: none;
        height: 3.5rem;
    }

    /* Service selector */
    .cp-services-label {
        font-family: 'Barlow', sans-serif;
        font-size: 0.875rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #11150F;
        text-align: center;
        margin: 0 0 0.4rem;
    }

    .cp-services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
        margin-bottom: 0.75rem;
    }

    .cp-service-option {
        display: none;
    }

    .cp-service-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        padding: 0.7rem 0.5rem;
        border: 2px solid #e5e7eb;
        border-radius: 0.75rem;
        cursor: pointer;
        background: #ffffff;
        transition: border-color 0.2s, background 0.2s;
        text-align: center;
        user-select: none;
    }

    .cp-service-card:hover {
        border-color: #3B82F6;
        background: #eff6ff;
    }

    .cp-service-option:checked + .cp-service-card {
        border-color: #3B82F6;
        background: #eff6ff;
        box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
    }

    .cp-service-icon {
        width: 2.25rem;
        height: 2.25rem;
        background: #EFF4FB;
        border: 2px solid #3B82F6;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cp-service-icon svg {
        width: 1.125rem;
        height: 1.125rem;
        stroke: #3B82F6;
        stroke-width: 2;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .cp-service-name {
        font-family: 'Barlow', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: #11150F;
        line-height: 1.2;
    }

    .cp-submit {
        display: block;
        width: 100%;
        padding: 0.75rem 2rem;
        background: #3B82F6;
        color: #ffffff;
        font-family: 'Barlow', sans-serif;
        font-size: 1rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        border: none;
        border-radius: 0.5rem;
        cursor: pointer;
        transition: background 0.25s;
        margin-bottom: 0.75rem;
    }

    .cp-submit:hover {
        background: #1d4ed8;
    }

    .cp-assist {
        text-align: center;
        font-size: 0.875rem;
        color: #6b7280;
        margin: 0;
    }

    .cp-assist a {
        color: #3B82F6;
        font-weight: 700;
        text-decoration: none;
    }

    .cp-assist a:hover {
        text-decoration: underline;
    }

    .cp-form-message {
        font-size: 0.875rem;
        font-weight: 600;
        text-align: center;
        border-radius: 0.5rem;
        padding: 0.65rem 1rem;
        margin: 0 0 0.75rem;
    }

    .cp-form-message--error {
        background: #fee2e2;
        color: #b91c1c;
    }

    .cp-form-success {
        text-align: center;
        padding: 1.5rem 0.5rem 0.5rem;
    }

    .cp-form-success-heading {
        font-family: 'Barlow', sans-serif;
        font-size: clamp(1.25rem, 3vw, 1.75rem);
        font-weight: 800;
        color: #11150F;
        text-transform: uppercase;
        margin: 0 0 0.5rem;
    }

    .cp-form-success-text {
        font-size: 0.9375rem;
        color: #6b7280;
        margin: 0 0 0.5rem;
        line-height: 1.5;
    }
}

@media only screen and (min-width: 36rem) {
    .cp-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

