/* ═══════════════════════════════════════════════════
   RESTORER CLEANING SERVICES — contact.css
   Shares the same design system as index_new.css
   (tokens, navbar, footer, forms, trust bar, map)
   Contact-specific additions follow below.
═══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS (mirrored from index_new.css) ── */
:root {
    --navy:      #0a1628;
    --navy-mid:  #122040;
    --navy-lite: #1c3058;
    --sky:       #34b4f4;
    --sky-dark:  #1a8fc4;
    --sky-lite:  #a8dcf8;
    --cream:     #f8f6f2;
    --white:     #ffffff;
    --grey-1:    #f0eeea;
    --grey-2:    #d4d0c8;
    --grey-3:    #8a8680;
    --text:      #1a1814;
    --text-lite: #5a5650;

    --font-head: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    --radius-sm: 6px;
    --radius:    12px;
    --radius-lg: 20px;

    --shadow-sm: 0 2px 8px rgba(10,22,40,.08);
    --shadow:    0 6px 24px rgba(10,22,40,.12);
    --shadow-lg: 0 16px 48px rgba(10,22,40,.18);

    --nav-h: 72px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
img  { display:block; max-width:100%; height:auto; }
a    { color:inherit; text-decoration:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
ul, ol { list-style:none; }
input, textarea, select {
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.section-pad { padding: 5rem 0; }
.section-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: .75rem;
}
.section-tag.light { color: var(--sky-lite); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}
.section-sub {
    margin-top: .75rem;
    color: var(--text-lite);
    font-size: .95rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}


/* ══════════════════════════════════
   SHARED BUTTONS
══════════════════════════════════ */
.btn-primary {
    display: inline-block;
    padding: .85em 2.2em;
    background: var(--sky);
    color: var(--white);
    font-weight: 600;
    font-size: .95rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 16px rgba(52,180,244,.35);
}
.btn-primary:hover {
    background: var(--sky-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(52,180,244,.4);
}


/* ══════════════════════════════════
   NAVBAR (identical to index_new)
══════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 999;
    background: rgba(10,22,40,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    gap: 2rem;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}
.nav-logo {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(52,180,244,.4);
}
.nav-brand-text {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}
.nav-brand-text em {
    display: block;
    font-style: italic;
    color: var(--sky-lite);
    font-size: .9em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin-left: auto;
}
.nav-link {
    font-size: .88rem;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    transition: color var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: var(--sky);
    transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.has-dropdown { position: relative; }
.has-dropdown .caret { font-size: .7em; margin-left: .2em; transition: transform var(--transition); }
.has-dropdown:hover .caret { transform: rotate(180deg); }
.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    min-width: 200px;
    background: var(--navy-mid);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: .5rem 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity var(--transition), transform var(--transition);
    box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
.dropdown li a {
    display: block;
    padding: .55rem 1.2rem;
    font-size: .85rem;
    color: rgba(255,255,255,.75);
    transition: color var(--transition), background var(--transition);
}
.dropdown li a:hover { color: var(--sky); background: rgba(52,180,244,.07); }

.nav-cta-btn {
    padding: .55em 1.4em;
    background: var(--sky);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 600;
    transition: background var(--transition);
    white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--sky-dark); }
.nav-cta-btn::after { display:none !important; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: .4rem;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition), width var(--transition);
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-h));
    background: var(--navy);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 998;
    padding: 1.5rem 1.25rem;
}
.mobile-drawer.open {
    display: block;
    transform: translateX(0);
}
.mobile-nav-links li { border-bottom: 1px solid rgba(255,255,255,.07); }
.mobile-nav-links li a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    transition: color var(--transition);
}
.mobile-nav-links li a:hover,
.mobile-nav-links li a.active { color: var(--sky); }

.mobile-services-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}
.mobile-services-row span {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    transition: color var(--transition);
}
.mobile-services-row svg {
    width: 16px; height: 16px;
    stroke: rgba(255,255,255,.5);
    flex-shrink: 0;
    transition: transform var(--transition), stroke var(--transition);
}
.mobile-services-row:hover span,
.mobile-services-row.open span { color: var(--sky); }
.mobile-services-row:hover svg { stroke: var(--sky); }
.mobile-services-row.open svg { transform: rotate(90deg); stroke: var(--sky); }

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding-left: 1rem;
}
.mobile-dropdown.open { max-height: 400px; }
.mobile-dropdown li a {
    font-size: .95rem;
    padding: .6rem 0;
    color: rgba(255,255,255,.65);
    transition: color var(--transition);
}
.mobile-dropdown li a:hover { color: var(--sky); }

.mobile-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: .8em 2em;
    background: var(--sky);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
}


/* ══════════════════════════════════
   PAGE HERO
══════════════════════════════════ */
.page-hero {
    position: relative;
    padding-top: var(--nav-h);
    min-height: 44vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 90% at 80% 50%, rgba(52,180,244,.11) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 5% 80%, rgba(52,180,244,.06) 0%, transparent 60%);
    pointer-events: none;
}
/* Decorative grid lines */
.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.page-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
.page-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1rem;
}
.hero-accent {
    color: var(--sky);
    font-style: italic;
}
.page-hero-sub {
    color: rgba(255,255,255,.68);
    font-size: 1.05rem;
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}
.page-hero-badges {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}
.badge {
    display: inline-block;
    padding: .35em 1em;
    background: rgba(52,180,244,.12);
    border: 1px solid rgba(52,180,244,.25);
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--sky-lite);
    letter-spacing: .04em;
}


/* ══════════════════════════════════
   TRUST BAR
══════════════════════════════════ */
.trust-bar {
    background: var(--sky);
    padding: .85rem 1.25rem;
}
.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.trust-item {
    font-size: .82rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}
.trust-icon { margin-right: .35em; }
.trust-divider { width: 1px; height: 18px; background: rgba(255,255,255,.4); }


/* ══════════════════════════════════
   CONTACT PAGE LAYOUT
══════════════════════════════════ */
.contact-page-section { background: var(--white); }

.contact-page-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 3.5rem;
    align-items: start;
}

/* ── Sidebar ── */
.sidebar-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.sidebar-title {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}
.sidebar-desc {
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    line-height: 1.75;
    margin-top: -.5rem;
}

/* Contact items */
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    transition: background var(--transition), border-color var(--transition);
}
.contact-item:hover { background: rgba(52,180,244,.1); border-color: rgba(52,180,244,.25); }
.contact-item-icon {
    width: 38px; height: 38px;
    background: rgba(52,180,244,.15);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--sky);
    flex-shrink: 0;
}
.contact-item-icon svg { width: 17px; height: 17px; }
.contact-item > div { display: flex; flex-direction: column; gap: .15rem; }
.contact-label {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--sky-lite);
}
.contact-value { font-size: .9rem; color: var(--white); font-weight: 500; }

/* Hours */
.sidebar-hours {
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 1.5rem;
}
.sidebar-hours h4 {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--sky-lite);
    margin-bottom: .85rem;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .45rem 0;
    font-size: .85rem;
    color: rgba(255,255,255,.7);
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { color: var(--sky-lite); font-weight: 500; }

/* Social */
.social-links { display: flex; gap: .75rem; }
.social-btn {
    width: 40px; height: 40px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.65);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-btn:hover { background: var(--sky); color: var(--white); border-color: var(--sky); }
.social-btn svg { width: 15px; height: 15px; }


/* ── Forms Area ── */
.forms-area {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Tab buttons */
.form-tabs {
    display: flex;
    gap: .5rem;
    margin-bottom: 0;
    border-bottom: 2px solid var(--grey-2);
    padding-bottom: 0;
}
.tab-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.5rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-lite);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    border: 2px solid transparent;
    border-bottom: none;
    background: var(--grey-1);
    transition: color var(--transition), background var(--transition), border-color var(--transition);
    position: relative;
    bottom: -2px;
}
.tab-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.tab-btn:hover { color: var(--navy); background: var(--white); }
.tab-btn.active {
    color: var(--sky);
    background: var(--white);
    border-color: var(--grey-2);
    border-bottom-color: var(--white);
}

/* Form panels */
.form-panel {
    display: none;
    background: var(--white);
    border: 2px solid var(--grey-2);
    border-top: none;
    border-radius: 0 var(--radius) var(--radius) var(--radius);
    padding: 2.5rem;
}
.form-panel.active { display: block; }

.form-panel-header { margin-bottom: 2rem; }
.form-panel-header h3 {
    font-family: var(--font-head);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .35rem;
}
.form-panel-header p { font-size: .88rem; color: var(--text-lite); }

/* Styled form inputs */
.styled-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.styled-form .form-group {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    margin-bottom: 1.1rem;
}
.styled-form .form-group label {
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-lite);
}
.req { color: var(--sky); }

.styled-form .form-group input,
.styled-form .form-group select,
.styled-form .form-group textarea {
    width: 100%;
    padding: .8rem 1rem;
    border: 1.5px solid var(--grey-2);
    border-radius: var(--radius-sm);
    font-size: .93rem;
    color: var(--text);
    background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    appearance: none;
    -webkit-appearance: none;
}
/* Custom select arrow */
.styled-form .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a8680' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}
.styled-form .form-group input[type="date"] {
    color-scheme: light;
}
.styled-form .form-group input:focus,
.styled-form .form-group select:focus,
.styled-form .form-group textarea:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(52,180,244,.14);
    background: var(--white);
}
.styled-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Submit button */
.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    width: 100%;
    padding: 1em 2em;
    background: var(--sky);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 18px rgba(52,180,244,.35);
    margin-top: .5rem;
    font-family: var(--font-body);
}
.btn-submit svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-submit:hover {
    background: var(--sky-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(52,180,244,.4);
}
.btn-submit:active { transform: translateY(0); }

/* Star rating */
.star-rating {
    display: flex;
    gap: .35rem;
    align-items: center;
}
.star {
    font-size: 2rem;
    color: var(--grey-2);
    cursor: pointer;
    transition: color var(--transition), transform var(--transition);
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
}
.star:hover, .star.selected, .star.hovered { color: #f59e0b; }
.star:hover { transform: scale(1.15); }


/* ══════════════════════════════════
   AREAS SECTION
══════════════════════════════════ */
.areas-section { background: var(--cream); }
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    justify-content: center;
}
.area-chip {
    display: inline-block;
    padding: .5em 1.2em;
    background: var(--white);
    border: 1.5px solid var(--grey-2);
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text);
    transition: border-color var(--transition), background var(--transition), color var(--transition);
    cursor: default;
}
.area-chip:hover {
    border-color: var(--sky);
    background: rgba(52,180,244,.06);
    color: var(--sky-dark);
}


/* ══════════════════════════════════
   MAP + FOOTER
══════════════════════════════════ */
.map-wrap { line-height: 0; }

.site-footer {
    background: var(--navy);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: .75rem; }
.footer-logo {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(52,180,244,.3);
}
.footer-brand-text strong { display: block; color: var(--white); font-size: .95rem; font-weight: 600; }
.footer-brand-text p { color: rgba(255,255,255,.45); font-size: .78rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--sky); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); }


/* ══════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════ */
@media (max-width: 1024px) {
    .contact-page-grid {
        grid-template-columns: 300px 1fr;
        gap: 2.5rem;
    }
}

/* ══════════════════════════════════
   RESPONSIVE — 768px (Tablet)
══════════════════════════════════ */
@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    /* Nav */
    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* Hero */
    .page-hero { min-height: auto; }
    .page-hero-inner { padding-top: 2.5rem; padding-bottom: 2.5rem; }
    .page-hero-badges { flex-wrap: wrap; gap: .5rem; }

    /* Layout */
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .sidebar-card { position: static; }

    .form-panel { padding: 1.75rem 1.25rem; }
    .styled-form .form-row { grid-template-columns: 1fr; }

    .trust-bar-inner { gap: .65rem 1rem; }
    .trust-divider { display: none; }

    .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .footer-links { gap: 1rem; }

    .section-pad { padding: 3.5rem 0; }
}

/* ══════════════════════════════════
   RESPONSIVE — 480px (Mobile)
══════════════════════════════════ */
@media (max-width: 480px) {
    .page-hero-title { font-size: 2.6rem; }

    .form-tabs { flex-direction: column; border-bottom: none; gap: .25rem; }
    .tab-btn {
        border-radius: var(--radius-sm);
        border: 2px solid var(--grey-2);
        background: var(--grey-1);
        bottom: 0;
        justify-content: center;
    }
    .tab-btn.active {
        border-color: var(--sky);
        border-bottom-color: var(--sky);
        background: rgba(52,180,244,.06);
    }
    .form-panel {
        border: 2px solid var(--grey-2);
        border-top: 2px solid var(--grey-2);
        border-radius: var(--radius);
        padding: 1.25rem 1rem;
    }

    .areas-grid { gap: .5rem; }
    .area-chip { font-size: .78rem; padding: .45em 1em; }

    .star { font-size: 1.7rem; }
}