:root {
    --pure-black: #0C0C0C;
    --pure-white: #FFFFFF;
    --border-subtle: rgba(255, 255, 255, 0.15);
    --text-muted: rgba(255, 255, 255, 0.6);
    --primary-blue: #4A90E2;
}

html {
    scrollbar-gutter: stable;
}

.contact-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--pure-black);
    position: relative;
    color: var(--pure-white);
}

/* ===========================
   SELECTION HUB
   =========================== */

.contact-hub-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 100px;
    opacity: 1;
}

.hub-main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 60px;
    text-align: left;
    line-height: 1.2;
}

.pill-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 350px;
}

.pill-btn {
    background: transparent;
    border: 2px solid var(--pure-white);
    border-radius: 50px;
    padding: 13px 30px;
    font-size: 0.8em;
    font-weight: 600;
    color: var(--pure-white);
    cursor: pointer;
    transition: all 0.5s ease;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

.pill-btn:hover {
    background: var(--pure-white);
    color: var(--pure-black);
    transform: translateX(10px);
}

/* ===========================
   4-COLUMN FOOTER
   =========================== */

.contact-footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.6;
}

.footer-col p,
.footer-col a {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--pure-white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 0.7;
}

/* ===========================
   MULTI-STEP INQUIRY
   =========================== */

.inquiry-fullscreen {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    padding: 100px 50px;
    overflow-y: auto;
    opacity: 0;
}

/* When inquiry is visible, center the content */
.inquiry-fullscreen[style*="display: block"] {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.inquiry-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: var(--pure-white);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.inquiry-close:hover {
    opacity: 1;
}

.step-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: none;
}

.step-wrapper.active {
    display: block;
}

.step-indicator {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 40px;
    opacity: 0.5;
}

.step-question {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 50px;
    line-height: 1.3;
}

.step-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-subtle);
    color: var(--pure-white);
    font-size: clamp(1.3rem, 3vw, 2rem);
    padding: 20px 0;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.3s;
}

.step-input:focus {
    outline: none;
    border-bottom-color: var(--primary-blue);
}

.step-input::placeholder {
    color: var(--text-muted);
}

.step-navigation {
    margin-top: 60px;
    display: flex;
    gap: 20px;
}

.btn-step {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

.btn-next {
    background: var(--pure-white);
    color: var(--pure-black);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-next i {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.btn-next:hover {
    transform: scale(1.05);
}

.btn-next:hover i {
    transform: translateX(3px) rotate(-15deg);
}

.btn-prev {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-prev i {
    font-size: 1.2em;
}

.btn-prev:hover {
    background: var(--pure-white);
    color: var(--pure-black);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.service-btn {
    background: transparent;
    border: 2px solid var(--border-subtle);
    border-radius: 50px;
    padding: 18px 30px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--pure-white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

.service-btn:hover {
    border-color: var(--pure-white);
}

.service-btn.selected {
    background: var(--pure-white);
    color: var(--pure-black);
    border-color: var(--pure-white);
}

/* ===========================
   SIMPLE FORM
   =========================== */

.simple-form-section {
    display: none;
    padding: 150px 20px 100px;
    opacity: 0;
    min-height: 100vh;
}

/* When simple form is visible, center the content */
.simple-form-section[style*="display: block"] {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.simple-form-back {
    margin-bottom: 40px;
}


.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.form-grid .full-width {
    grid-column: 1 / -1;
}

.simple-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-subtle);
    color: var(--pure-white);
    font-size: 1.1rem;
    padding: 15px 0;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.3s;
}

.simple-input:focus {
    outline: none;
    border-bottom-color: var(--primary-blue);
}

.simple-input::placeholder {
    color: var(--text-muted);
}

textarea.simple-input {
    min-height: 120px;
    resize: none;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0 30px 0;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
    color: var(--pure-white);
}

.legal-link {
    color: var(--primary-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #6BA3E8;
}

.simple-form-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 40px;
}

/* ===========================
   SUCCESS PAGES
   =========================== */

.success-section {
    display: none;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 150px 20px;
    opacity: 0;
}

.success-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
}

.btn-success-home {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--pure-white);
    color: var(--pure-black);
    border-radius: 50px;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 40px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 0.8em;
}

.btn-success-home i {
    font-size: 1.4em;
    transition: transform 0.3s ease;
}

.btn-success-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    color: var(--pure-black);
}

.btn-success-home:hover i {
    transform: scale(1.1);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 992px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .inquiry-fullscreen {
        padding: 80px 20px;
    }

    .simple-form-section {
        padding: 100px 20px 50px;
    }
}

/* Notification Messages */
.notification-message {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: rgba(255, 68, 68, 0.95);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.notification-message.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.notification-message.success {
    background: rgba(74, 144, 226, 0.95);
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    75% {
        transform: translateX(10px);
    }
}