/* Studio GWS Calculator Styles - Pure CSS */
:root {
    --gold: #d4af37;
    --gold-dim: rgba(212, 175, 55, 0.15);
    --black: #121212;
    --card-bg: #1a1a1a;
    --zinc-800: #2a2a2a;
    --zinc-700: #333;
    --text: #e0e0e0;
    --text-muted: #a0a0a0;
    --shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.serif {
    font-family: 'Playfair Display', serif;
}

.gold {
    color: var(--gold);
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.mt-lg {
    margin-top: 30px;
}

.w-full {
    width: 100%;
}

.calculator-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: 100vh;
}

.calc-header {
    text-align: center;
    margin-bottom: 50px;
}

.calc-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.calc-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Grid Layout */
.calc-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
    align-items: start;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--zinc-800);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

/* Sections */
.calc-section {
    margin-bottom: 40px;
}

.calc-section:last-child {
    margin-bottom: 0;
}

.section-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Type Grid */
.type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
}

.type-card input {
    display: none;
}

.card-inner {
    background: var(--zinc-800);
    border: 2px solid transparent;
    padding: 20px 10px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.type-card:hover .card-inner {
    border-color: var(--gold-dim);
    transform: translateY(-3px);
}

.type-card input:checked+.card-inner {
    border-color: var(--gold);
    background: var(--gold-dim);
}

.card-inner .emoji {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.card-inner .label {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

/* Slider & Sqft */
.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.sqft-value {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.gold-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: var(--zinc-800);
    border-radius: 5px;
    margin-bottom: 20px;
}

.gold-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--gold-dim);
}

.sqft-num-input {
    background: transparent;
    border: 1px solid var(--zinc-700);
    color: white;
    padding: 10px;
    border-radius: 8px;
    width: 100px;
}

/* Pills */
.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill input {
    display: none;
}

.pill span {
    display: inline-block;
    padding: 10px 18px;
    background: var(--zinc-800);
    border-radius: 40px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid transparent;
}

.pill:hover span {
    background: var(--zinc-700);
}

.pill input:checked+span {
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
}

/* Timeline Select */
.gold-select {
    width: 100%;
    background: var(--zinc-800);
    border: 1px solid var(--zinc-700);
    padding: 15px;
    color: white;
    border-radius: 12px;
    -webkit-appearance: none;
    appearance: none;
}

/* Results Box */
.estimate-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--gold-dim);
    border-radius: 20px;
    padding: 40px 20px;
}

.estimate-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.price-range {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.price-range .sep {
    margin: 0 10px;
    opacity: 0.4;
    font-weight: 300;
}

.estimate-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.btn-primary-gold {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 18px 32px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px var(--gold-dim);
}

.btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.4);
    background: #deb564;
}

.trust-marks {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mark {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.mark .check {
    color: var(--gold);
    margin-right: 12px;
    font-weight: bold;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-card {
    background: var(--card-bg);
    border: 1px solid var(--zinc-800);
    padding: 50px 40px;
    border-radius: 32px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    animation: zoomIn 0.4s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-card h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.urgency-options {
    display: grid;
    gap: 15px;
}

.urgency-btn {
    background: var(--zinc-800);
    border: 1px solid transparent;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: white;
    text-align: left;
    transition: 0.3s;
}

.urgency-btn:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.urgency-btn .icon {
    font-size: 2rem;
    margin-right: 20px;
}

.urgency-btn strong {
    display: block;
    font-size: 1.1rem;
}

.urgency-btn span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact Form Section */
.contact-wrap {
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        y: 30px;
    }

    to {
        opacity: 1;
        y: 0;
    }
}

.summary-pill {
    background: var(--gold-dim);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: 40px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 20px 0;
}

.form-header {
    margin-bottom: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group.full {
    grid-column: span 2;
}

.input-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.input-group input {
    width: 100%;
    background: var(--zinc-800);
    border: 1px solid var(--zinc-700);
    padding: 15px;
    border-radius: 10px;
    color: white;
    transition: 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--gold);
}

/* Mobile Responses */
@media (max-width: 900px) {
    .calc-grid {
        grid-template-columns: 1fr;
    }

    .calc-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .type-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .price-range {
        font-size: 1.8rem;
    }
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: black;
}