﻿/* ============================================================
   Company.css  –  Reindarux Nig. Ent.
   About Us + Contact Us  shared styles
   Deep navy / electric gold / crisp white
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;700&display=swap');

/* ── Design tokens ──────────────────────────────────────────── */
:root {
    --navy: #0a1628;
    --navy-mid: #122040;
    --navy-lt: #1c3560;
    --gold: #d4a017;
    --gold-lt: #f0c040;
    --gold-pale: #fef9ec;
    --white: #ffffff;
    --off-white: #f7f8fc;
    --slate: #4a5568;
    --slate-lt: #e8edf5;
    --text: #1a202c;
    --text-muted: #718096;
    --border: #e2e8f0;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 12px rgba(0,0,0,.07);
    --shadow: 0 8px 32px rgba(0,0,0,.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --transition: .22s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.co-page {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--off-white);
    overflow-x: hidden;
}

/* ── Shared utilities ───────────────────────────────────────── */
.co-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 14px;
}

.co-eyebrow-gold {
    color: var(--gold);
}

.co-eyebrow-light {
    color: var(--gold-lt);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
    margin: 0 0 20px;
}

.section-title-light {
    color: var(--white);
}

.title-accent {
    color: var(--gold);
}

.title-accent-light {
    color: var(--gold-lt);
}

.section-body {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 16px;
}

/* ════════════════════════════════════════════════════════════
   ABOUT HERO
════════════════════════════════════════════════════════════ */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-lt) 100%);
    padding: clamp(60px, 10vw, 110px) clamp(20px, 6vw, 80px);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

/* Geometric decorators */
.hero-geo {
    position: absolute;
    border-radius: 4px;
    opacity: .08;
    background: var(--gold);
    transform: rotate(45deg);
}

.hero-geo-1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -60px;
    opacity: .06;
}

.hero-geo-2 {
    width: 180px;
    height: 180px;
    bottom: -50px;
    right: 200px;
    opacity: .05;
    background: var(--white);
}

.hero-geo-3 {
    width: 80px;
    height: 80px;
    top: 40px;
    left: 55%;
    opacity: .1;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: clamp(30px, 6vw, 80px);
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-hero-text {
    flex: 1;
    min-width: 280px;
}

.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin: 0 0 24px;
    letter-spacing: -1px;
}

.about-hero-lead {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,.8);
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 24px;
}

.about-hero-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 20px 0;
    border-radius: 2px;
}

.about-hero-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: rgba(255,255,255,.55);
    margin: 0;
}

/* Badge */
.about-hero-badge-wrap {
    flex-shrink: 0;
}

.about-hero-badge {
    width: clamp(160px, 20vw, 220px);
    height: clamp(160px, 20vw, 220px);
    border-radius: 50%;
    background: conic-gradient(var(--gold) 0deg, var(--gold-lt) 90deg, transparent 90deg);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(212,160,23,.25);
    animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.badge-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: spinSlow 20s linear infinite reverse;
}

.badge-icon {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 6px;
}

.badge-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

/* ════════════════════════════════════════════════════════════
   MISSION / VISION STRIP
════════════════════════════════════════════════════════════ */
.mv-strip {
    display: flex;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.mv-card {
    flex: 1;
    min-width: 240px;
    padding: clamp(30px, 5vw, 52px) clamp(24px, 4vw, 48px);
    transition: background var(--transition);
}

    .mv-card:hover {
        background: var(--gold-pale);
    }

.mv-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.mv-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 12px;
}

.mv-body {
    font-size: 0.93rem;
    color: var(--slate);
    line-height: 1.75;
    margin: 0;
}

.mv-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}

/* ════════════════════════════════════════════════════════════
   WHAT WE DO
════════════════════════════════════════════════════════════ */
.what-section {
    display: flex;
    gap: clamp(30px, 6vw, 80px);
    padding: clamp(50px, 8vw, 90px) clamp(20px, 6vw, 80px);
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: flex-start;
}

.what-left {
    flex: 1;
    min-width: 280px;
}

.what-right {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
    animation: fadeUp .5s ease both;
    animation-delay: var(--delay, 0ms);
}

    .service-card:hover {
        box-shadow: var(--shadow);
        transform: translateX(4px);
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sc-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    opacity: .7;
    min-width: 40px;
}

.sc-title {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 5px;
}

.sc-body {
    font-size: 0.86rem;
    color: var(--slate);
    margin: 0;
    line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   VALUES SECTION
════════════════════════════════════════════════════════════ */
.values-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
    padding: clamp(50px, 8vw, 90px) clamp(20px, 6vw, 80px);
}

.values-header {
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 52px);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: background var(--transition), transform var(--transition);
}

    .value-item:hover {
        background: rgba(212,160,23,.12);
        border-color: rgba(212,160,23,.3);
        transform: translateY(-4px);
    }

.value-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 14px;
}

.value-item h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold-lt);
    margin: 0 0 10px;
}

.value-item p {
    font-size: 0.87rem;
    color: rgba(255,255,255,.65);
    margin: 0;
    line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   ABOUT CTA
════════════════════════════════════════════════════════════ */
.about-cta {
    background: var(--gold-pale);
    border-top: 3px solid var(--gold);
    padding: clamp(50px, 8vw, 80px) clamp(20px, 6vw, 80px);
    text-align: center;
}

.about-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    color: var(--navy);
    margin: 0 0 16px;
    line-height: 1.2;
}

.cta-body {
    font-size: 1rem;
    color: var(--slate);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* ── CTA Button ─────────────────────────────────────────────── */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white) !important;
    border: 2px solid var(--navy);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: .5px;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
    box-shadow: 0 4px 20px rgba(10,22,40,.2);
}

    .btn-cta:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--navy) !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(212,160,23,.35);
    }

/* ════════════════════════════════════════════════════════════
   CONTACT HERO
════════════════════════════════════════════════════════════ */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-lt) 100%);
    padding: clamp(52px, 9vw, 96px) clamp(20px, 6vw, 80px);
    overflow: hidden;
    text-align: center;
}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.contact-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -1px;
}

.contact-hero-lead {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255,255,255,.75);
    line-height: 1.8;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════
   CONTACT BODY
════════════════════════════════════════════════════════════ */
.contact-body {
    display: flex;
    gap: clamp(24px, 4vw, 52px);
    padding: clamp(40px, 7vw, 80px) clamp(20px, 6vw, 80px);
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* ── Info column ────────────────────────────────────────────── */
.contact-info-col {
    flex: 0 0 300px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ci-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}

    .ci-block:hover {
        box-shadow: var(--shadow);
        transform: translateY(-2px);
    }

.ci-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.ci-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-muted);
    margin: 0 0 5px;
}

.ci-val {
    font-size: 0.93rem;
    color: var(--text);
    line-height: 1.65;
    margin: 0;
}

.ci-link {
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    transition: color var(--transition);
}

    .ci-link:hover {
        color: var(--gold);
    }

/* Business hours */
.ci-hours {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 20px;
}

    .ci-hours .ci-label {
        color: rgba(255,255,255,.6);
        margin-bottom: 12px;
    }

.hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 16px;
    font-size: 0.87rem;
    color: rgba(255,255,255,.8);
}

.hours-time {
    font-weight: 700;
    color: var(--gold-lt);
    text-align: right;
}

.hours-closed {
    color: rgba(255,255,255,.35);
}

/* ── Form column ────────────────────────────────────────────── */
.contact-form-col {
    flex: 1;
    min-width: 280px;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.cfc-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, var(--navy), var(--navy-lt));
    padding: 22px 26px;
    color: #fff;
}

.cfc-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.cfc-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 3px;
    color: var(--white);
}

.cfc-sub {
    font-size: 0.83rem;
    color: rgba(255,255,255,.65);
    margin: 0;
}

.form-success-banner {
    background: #dcfce7;
    border-left: 4px solid #16a34a;
    color: #166534;
    padding: 14px 22px;
    font-weight: 700;
    font-size: 0.93rem;
}

/* ── Form fields ────────────────────────────────────────────── */
.co-form {
    padding: 26px;
}

.co-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.co-form-grp {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px;
}

.co-form-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--text-muted);
}

.req {
    color: #dc2626;
}

.co-form-ctrl {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.92rem;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--off-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
}

    .co-form-ctrl:focus {
        outline: none;
        border-color: var(--navy);
        background: var(--white);
        box-shadow: 0 0 0 3px rgba(10,22,40,.1);
    }

.co-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}

.co-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.co-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.co-form-note {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.btn-cta-form {
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
}

    .btn-cta-form:disabled {
        opacity: .6;
        cursor: not-allowed;
        transform: none;
    }

/* ════════════════════════════════════════════════════════════
   MAP STRIP
════════════════════════════════════════════════════════════ */
.map-strip {
    background: var(--navy);
    padding: 28px clamp(20px, 6vw, 80px);
}

.map-placeholder {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.map-icon {
    font-size: 1.6rem;
    color: var(--gold);
    flex-shrink: 0;
}

.map-placeholder strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
}

.map-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,.55);
}

.btn-map {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--navy) !important;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 4px 14px rgba(212,160,23,.3);
}

    .btn-map:hover {
        background: var(--gold-lt);
        transform: translateY(-1px);
    }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
    .what-section {
        flex-direction: column;
    }

    .contact-body {
        flex-direction: column;
    }

    .contact-info-col {
        flex: 0 0 auto;
        width: 100%;
    }

    .mv-divider {
        width: 100%;
        height: 1px;
    }

    .mv-strip {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .about-hero-badge-wrap {
        display: none;
    }

    .co-form-row-2 {
        grid-template-columns: 1fr;
    }

    .co-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta-form {
        width: 100%;
        justify-content: center;
    }

    .map-placeholder {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-map {
        margin-left: 0;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 380px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media print {
    .about-hero, .contact-hero {
        background: var(--navy) !important;
    }

    .btn-cta, .btn-map {
        display: none !important;
    }
}
