:root {
    --primary: #ffffff;
    --accent: #e75025; /* Primary Orange */
    --accent-glow: rgba(231, 80, 37, 0.4);
    --blue: #446d82;
    --gray: #81848d;
    --dark-navy: #0d1a22; --header-bg: #f4f4f4;
    --bg-dark: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-muted: rgba(255, 255, 255, 0.6);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-navy);
    color: var(--primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Site Header */
.site-header {
    width: 100%;
    padding: 20px 40px;
    background: var(--header-bg);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.rdp-logo-top {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Contact Section */
.contact-info-strip {
    background: var(--dark-navy);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.contact-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 600;
}

.address-block {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Main Container */
.app-container {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.form-card {
    width: 100%;
    max-width: 520px;
    background: var(--glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.6);
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress-fill {
    width: 16.6%;
    height: 100%;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step {
    display: none;
}

.step.active {
    display: block;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.input-group {
    margin-bottom: 24px;
}

label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 600;
}

input, select {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 16px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.1);
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    font-size: 0.9rem;
}

.btn.accent {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 20px var(--accent-glow);
}

.btn.accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--accent-glow);
    filter: brightness(1.1);
}

.btn.secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
    margin-top: 15px;
}

.btn.secondary:hover {
    background: rgba(255,255,255,0.05);
}

.selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.option {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.option.selected {
    border-color: var(--accent);
    background: rgba(231, 80, 37, 0.1);
}

.option .icon {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.dynamic-list {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.dynamic-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 20px;
}

.btn.add-item {
    background: rgba(255,255,255,0.05);
    border: 1px dashed var(--blue);
    color: var(--blue);
    padding: 14px;
    font-size: 0.85rem;
}

.btn.add-item:hover {
    background: rgba(68, 109, 130, 0.1);
    border-style: solid;
}

.btn.pulse {
    animation: orangePulse 2s infinite;
}

@keyframes orangePulse {
    0% { box-shadow: 0 0 0 0 var(--accent-glow); }
    70% { box-shadow: 0 0 0 15px rgba(231, 80, 37, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 80, 37, 0); }
}

.review-area .summary-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 600px) {
    .site-header {
    width: 100%;
    padding: 20px 40px;
    background: var(--header-bg);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}
    .rdp-logo-top {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
    .form-card { padding: 30px 20px; border-radius: 0; border: none; }
}


/* Thank You Screen */
.thank-you-content {
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 0.8s ease-out;
}

.headline-xl {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 600;
}

.subheadline {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.reassurance {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-container .btn {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 600px) {
    .headline-xl { font-size: 2.5rem; }
}