/* NYASA ATELIER - FINAL DUAL-COLUMN MASTER 2026 */
:root {
    --ny-teal: #0b3c49;
    --ny-abyss: #051d24; 
    --ny-gold: #D4AF37;
    --ny-bg: #fdfcf9;
    --ny-glass-gold: rgba(212, 175, 55, 0.12);
    --gold: #D4AF37;
}



.nyasa-atelier-contact {
    min-height: 100vh;
    background: var(--ny-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.luxury-bg-texture {
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    opacity: 0.4;
    pointer-events: none;
}

/* THE GRID SYSTEM */
.atelier-grid {
    display: grid;
    grid-template-columns: 420px 1fr; /* Sidebar locked at 420px */
    max-width: 1400px;
    width: 100%;
    min-height: 850px;
    background: #fff;
    box-shadow: 0 60px 120px rgba(0,0,0,0.1);
    z-index: 10;
    position: relative;
}

/* --- COLUMN 1: SIDEBAR --- */
.atelier-sidebar {
    background: var(--ny-abyss);
    padding: 60px 45px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--ny-gold);
}

/* The Inset Golden Frame */
.atelier-sidebar::after {
    content: "";
    position: absolute;
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    border: 1px solid var(--ny-glass-gold);
    pointer-events: none;
    font-family: 'Cormorant Garamond', serif;
}

.sidebar-texture {
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/black-linen.png');
    opacity: 0.1;
}

.sidebar-content { 
    position: relative; 
    z-index: 5; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
}

.atelier-badge { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 20px; 
}

.badge-line { 
    width: 25px; 
    height: 1px; 
    background: var(--ny-gold); 
}

.badge-text { 
    font-size: 9px; 
    letter-spacing: 3px; 
    text-transform: uppercase; 
    color: var(--ny-gold); 
}

.atelier-sidebar h2 { 
    font-family: 'Cormorant Garamond', serif; 
    font-size: 48px; 
    line-height: 0.9; 
    margin-bottom: 40px; 
    font-weight: 500; 
}

.atelier-sidebar h2 .italic { 
    font-style: italic; 
    color: var(--ny-gold); 
}

/* SIDEBAR TILES */
.atelier-contact-grid { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    margin-bottom: 30px; 
}

.contact-tile {
    display: flex; 
    align-items: center; 
    padding: 20px; 
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05); 
    text-decoration: none; 
    transition: 0.3s;
}

/* --- LUXURY STATUS PILL --- */
.whatsapp-exclusive {
    position: relative; /* Essential for positioning the pill */
}

.status-pill {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 211, 102, 0.1); /* Subtle WhatsApp Green tint */
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.status-text {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #25D366; /* WhatsApp Green */
    font-weight: 800;
}

.status-pulse {
    width: 6px;
    height: 6px;
    background: #25D366;
    border-radius: 50%;
    position: relative;
}

/* The actual pulse animation */
.status-pulse::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: status-glow 2s infinite ease-out;
}

@keyframes status-glow {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

/* Ensure the tile content doesn't overlap the pill */
.whatsapp-exclusive .tile-content {
    padding-right: 60px;
}

.contact-tile:hover { 
    background: rgba(212, 175, 55, 0.08); 
    border-color: var(--ny-gold); 
    transform: translateX(8px); 
}

.tile-icon { 
    width: 35px; 
    color: var(--ny-gold); 
    font-size: 16px; 
    margin-right: 15px; 
}

.tile-label { 
    font-size: 8px; 
    text-transform: uppercase; 
    color: rgba(255,255,255,0.4); 
    display: block; 
}

.tile-value { 
    font-size: 14px; 
    color: #fff; 
    font-family: 'Cormorant Garamond', serif;
}

/* LOCATIONS */
.studio-locations-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
    margin-top: auto; 
    padding-top: 25px; 
    border-top: 1px solid rgba(255,255,255,0.08); 
}

.studio-node { 
    display: flex; 
    gap: 10px;
 }

.node-marker { 
    color: var(--ny-gold); 
    font-size: 11px; 
}

.node-label { 
    font-size: 9px; 
    font-weight: 700; 
    color: #fff; 
    text-transform: uppercase; 
    display: block;
 }

.node-status { 
    font-size: 8px; 
    color: rgba(255,255,255,0.3); 
    text-transform: uppercase; 
}

/* SIDEBAR FOOTER */
.sidebar-footer { 
    margin-top: 30px; 
    padding-top: 20px; 
    border-top: 1px solid rgba(255,255,255,0.08); 
}

.signature-box p { 
    font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--ny-gold); font-size: 15px; }
.gold-signature { max-width: 80px; opacity: 0.5; margin-top: 5px; }
.status-indicator { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.pulse-ring { width: 6px; height: 6px; background: #2ecc71; border-radius: 50%; box-shadow: 0 0 8px #2ecc71; }
.status-text { font-size: 9px; color: rgba(255,255,255,0.4); text-transform: uppercase; }

/* --- COLUMN 2: FORM CANVAS --- */
.form-canvas { padding: 60px; background: var(--ny-bg); display: flex; align-items: center; justify-content: center; }

.dossier-card {
    background: #fff; padding: 60px; width: 100%; max-width: 750px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05); border: 1px solid #f0f0f0; position: relative;
}

.dossier-card::after {
    content: ""; position: absolute; top: 0; right: 0; border-style: solid;
    border-width: 0 30px 30px 0; border-color: transparent var(--ny-bg) transparent transparent;
}

.dossier-tag { font-size: 9px; text-transform: uppercase; letter-spacing: 3px; color: var(--ny-gold); font-weight: 800; display: block; margin-bottom: 15px; }
.process-steps { display: flex; gap: 30px; margin-bottom: 40px; border-bottom: 1px solid #f5f5f5; padding-bottom: 15px; }
.step { font-size: 9px; text-transform: uppercase; color: #bbb; display: flex; gap: 8px; font-weight: 700; }
.step.active { color: var(--ny-teal); border-bottom: 2px solid var(--ny-gold); padding-bottom: 13px; margin-bottom: -17px; }

.form-intro h1 { font-family: 'Cormorant Garamond', serif; font-size: 48px; color: var(--ny-teal); margin-bottom: 15px; }
.form-intro h1 span { font-style: italic; color: var(--ny-gold); }
.form-intro p { font-size: 14px; color: #777; line-height: 1.6; margin-bottom: 40px; max-width: 500px; }

/* INPUT STYLES */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.field-group { margin-bottom: 25px; }
.field-group label { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: var(--ny-teal); font-weight: 800; display: block; margin-bottom: 8px; }

.form-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    margin-bottom: 25px;
    font-size: 13px;
    border-radius: 3px;
    border: 1px solid;
}
.form-alert-ok { background: rgba(76, 209, 55, 0.08); border-color: rgba(76, 209, 55, 0.3); color: #2f7d1f; }
.form-alert-error { background: rgba(220, 53, 69, 0.08); border-color: rgba(220, 53, 69, 0.3); color: #c0392b; }
.field-group input, .field-group select, .field-group textarea {
    width: 100%; padding: 12px 0; border: none; border-bottom: 1px solid #eee;
    font-size: 14px; background: transparent; transition: 0.3s;
}
.field-group input:focus { outline: none; border-color: var(--ny-gold); }

/* SUBMIT BUTTON */
.btn-nyasa-luxury {
    background: var(--ny-teal); color: #fff; border: none; padding: 22px; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    text-transform: uppercase; letter-spacing: 4px; font-weight: 700; font-size: 11px;
    cursor: pointer; transition: 0.4s; margin-top: 15px; font-family: 'Cormorant Garamond', serif !important;
}
.btn-nyasa-luxury:hover { background: var(--ny-gold); color: var(--ny-teal); padding-left: 35px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .atelier-grid { grid-template-columns: 1fr; }
    .atelier-sidebar { border-right: none; border-bottom: 2px solid var(--ny-gold); }
    .form-canvas { padding: 40px 20px; }
}