/* VARS Royal Palace - Shops Contact Owner Stylesheet (shops_contact_owner.css) */

:root {
    --royal-navy: #152551;
    --royal-navy-dark: #081228;
    --royal-gold: #C5A059;
    --royal-gold-light: #E5B75D;
    --royal-gold-subtle: #fdfaf5;
    --text-slate: #475569;
    --royal-success: #16a34a;
}

/* HERO */
.owner-contact-hero {
    background: linear-gradient(135deg, rgba(8, 18, 40, 0.96) 0%, rgba(21, 37, 81, 0.94) 100%),
                url('../images/shops/Shop5.jpg') center/cover no-repeat;
    color: #ffffff;
    border-radius: 20px;
    padding: 3.5rem 2rem 2.8rem;
    text-align: center;
    margin: 2rem 0 2.5rem;
    border-bottom: 4px solid var(--royal-gold);
    box-shadow: 0 15px 40px rgba(8, 18, 40, 0.18);
}

.owner-crest-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 160, 89, 0.18);
    border: 1px solid var(--royal-gold);
    color: var(--royal-gold-light);
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.owner-contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    color: #ffffff;
    margin: 0 0 10px;
    font-weight: 800;
}

.owner-contact-hero p {
    color: #cbd5e1;
    font-size: 1.02rem;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* PRESELECTED SHOWROOM BANNER */
.preselected-showroom-box {
    background: #fdfbf7;
    border: 2px solid var(--royal-gold);
    border-radius: 16px;
    padding: 1.5rem 1.8rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.selected-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--royal-navy);
    margin: 4px 0 6px;
}

.selected-info p {
    color: #64748b;
    font-size: 0.86rem;
    margin: 0;
}

/* TWO-COLUMN GRID */
.contact-owner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-owner-grid { grid-template-columns: 1fr; }
}

/* LEFT COLUMN: OWNER DIRECT CHANNELS */
.owner-channels-card {
    background: linear-gradient(135deg, #081228 0%, #152551 100%);
    border-radius: 20px;
    padding: 2.5rem;
    color: #ffffff;
    border: 2px solid rgba(197, 160, 89, 0.4);
    box-shadow: 0 12px 35px rgba(8, 18, 40, 0.2);
}

.owner-channels-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin: 0 0 6px;
}

.channels-subhead {
    color: var(--royal-gold-light);
    font-size: 0.88rem;
    margin-bottom: 1.8rem;
    font-weight: 600;
}

/* DIRECT ACTION BUTTONS */
.direct-actions-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 2rem;
}

.action-call-owner {
    background: linear-gradient(135deg, #E5B75D 0%, #C5A059 100%);
    color: var(--royal-navy-dark);
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-call-owner:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.5);
    color: #000;
}

.action-wa-owner {
    background: #25D366;
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.action-wa-owner:hover {
    transform: translateY(-2px);
    background: #1eb853;
}

/* CONTACT DETAILS LIST */
.contact-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 14px;
}

.contact-detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cd-icon {
    font-size: 1.4rem;
    width: 38px;
    height: 38px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cd-info h4 {
    margin: 0 0 2px;
    font-size: 0.86rem;
    color: var(--royal-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cd-info p {
    margin: 0;
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.5;
}

/* RIGHT COLUMN: BOOKING INQUIRY FORM */
.booking-form-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1.5px solid #e2e8f0;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(21, 37, 81, 0.06);
}

.booking-form-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--royal-navy);
    margin: 0 0 6px;
}

.booking-form-card p.form-desc {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0 0 1.8rem;
}

.form-field-group {
    margin-bottom: 1.1rem;
}

.form-field-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.form-control-input,
.form-control-select,
.form-control-textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.92rem;
    color: #1e293b;
    background: #f8fafc;
    box-sizing: border-box;
    transition: all 0.2s ease;
    font-family: inherit;
    outline: none;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
    border-color: var(--royal-gold);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.18);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .form-grid-2 { grid-template-columns: 1fr; }
}

.btn-submit-inquiry {
    width: 100%;
    background: linear-gradient(135deg, var(--royal-navy) 0%, #1d3a7a 100%);
    color: #ffffff;
    border: 2px solid var(--royal-gold);
    border-radius: 30px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 1rem;
    box-shadow: 0 8px 24px rgba(21, 37, 81, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit-inquiry:hover {
    background: var(--royal-gold);
    color: var(--royal-navy-dark);
    border-color: var(--royal-navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.4);
}
