/* ===============================
   INTER FONT
================================ */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


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

body {
    font-family: 'Inter', sans-serif;
    height: 100vh;
    overflow: hidden;
}

a {
  text-decoration: none;
}

/* ===== SPLIT LAYOUT ===== */

.container {
    display: flex;
    height: 100vh;
}

/* ===== LEFT SIDE ===== */

.left {
    width: 50%;
    background: #f4f4f4;
    padding: 80px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100vh;
    overflow-y: auto;
}

.logo {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 40px;
}

.logo img {
    max-width: 100px;
}

.line {
    width: 40px;
    height: 3px;
    background: #000;
    margin-bottom: 25px;
}

.small-text {
    color: #666;
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 26px;
}

.small-text h2 {
  margin-bottom: 10px;
}

h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* footer */

.left .footer {
    margin-top: auto;
    padding-top: 60px;
    font-size: 13px;
    color: #666;
}

.left .footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 6px;
}

.left .footer-links a {
    text-decoration: none;
    color: #000;
    transition: opacity 0.3s ease;
}

.left .footer-links a:hover {
    opacity: 0.6;
}

.left .footer-copy {
    font-size: 12px;
    color: #888;
}

/* ===== RIGHT SIDE ===== */
.right {
    width: 50%;
    height: 100vh;
    position: sticky;
    top: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
    overflow: hidden;
}

.contact-visual {
    color: #fff;
    max-width: 500px;
}

.contact-visual h2 {
    font-size: 34px;
    line-height: 1.4;
}


.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Dark cinematic overlay */
.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.35)
    );
}

/* ===== SLIDE CONTENT ===== */

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 520px;
    color: #fff;
    z-index: 2;
}

.slide-content h2 {
    font-size: 38px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 45px;
}

/* ===== META (NUMBER + LINE + LABEL) ===== */

.slide-meta {
    display: flex;
    flex-direction: column;
}

.meta-number {
    font-size: 54px;
    font-weight: 700;
}

.meta-line {
    width: 45px;
    height: 3px;
    background: #fff;
    margin: 14px 0;
}

.meta-label {
    font-size: 13px;
    letter-spacing: 1.5px;
    opacity: 0.85;
}

/* ===== TOP ICON ===== */

.top-icons {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 5;
}

.top-icons a {
    border: 1px solid #fff;
    padding: 10px 14px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}
.cls-1 {
  fill: none;
}


/* ===============================
   CONTACT SPLIT LAYOUT
================================ */


.contact-content {
    max-width: 520px;
}

.left h1 {
    font-size: 48px;
    margin: 30px 0 20px;
}

.contact-intro {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #000;
}

.contact-form textarea {
    resize: vertical;
}

/* ===============================
   CONTACT PAGE REVERSED LAYOUT
================================ */

.contact-page {
    flex-direction: row-reverse;
}
.contact-page .top-icons a {
  border-color: #000;
  color: #000;
}


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

.next-btn,
.prev-btn {
    padding: 12px 20px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    width: fit-content;
}

select {
    padding: 14px;
    border: 1px solid #ddd;
}

.form-intro {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

input[type="range"] {
    width: 100%;
}

/* Progress Bar */
.progress-wrapper {
    width: 100%;
    height: 4px;
    background: #e5e5e5;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 20%;
    background: #000;
    transition: width 0.4s ease;
}

/* Steps */
/*
.form-step {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.form-step.active {
    display: flex;
}
*/
/* Button Groups */
.button-group,
.multi-select {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.button-group button,
.multi-select button {
    padding: 12px 18px;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 14px;
}

.button-group button:hover,
.multi-select button:hover {
    background: #000;
    color: #fff;
}

.button-group button.selected,
.multi-select button.selected {
    background: #000;
    color: #fff;
}

/* Large layout */
.button-group.large button {
    width: calc(50% - 6px);
}

/* Intro text */
.form-intro {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* Headings */
h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

h4 {
    font-size: 15px;
    margin-top: 40px;
    margin-bottom: 15px;
}



.last-stage {
    display: grid;
    grid-template-areas: 'name email' 'details details';
    gap: 10px;
    margin: 30px 0;
}


.details {
    width: 100%;
    margin: 10px 10px 10px 0;
    grid-area: details;
    margin: 0;
    min-height: 160px;
}
.name {
    grid-area: name;
}
.email {
    grid-area: email;
}

/* ===============================
   TRANSITION
================================ */

.contact-form {
    position: relative;
    min-height: 620px;
}

.form-step {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;

    opacity: 0;
    transform: translateY(12px);
    filter: blur(4px);

    transition:
        transform 0.4s cubic-bezier(.4,0,.2,1),
        opacity 0.3s ease,
        filter 0.3s ease;

    pointer-events: none;
}

.form-step.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    pointer-events: auto;
}

.form-step.exit {
    opacity: 0;
    transform: translateY(-12px);
    filter: blur(4px);
}


/* ===============================
   BUTTONS
================================ */

.button-group button,
.multi-select button {
    position: relative;
    padding: 14px 22px;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #111;
    cursor: pointer;
    font-size: 14px;

    transition:
        transform 0.2s cubic-bezier(.4,0,.2,1),
        box-shadow 0.25s cubic-bezier(.4,0,.2,1),
        border-color 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

/* Hover – subtle lift */
.button-group button:hover,
.multi-select button:hover {
    transform: translateY(-2px);
    border-color: #000;
}

/* Press feedback */
.button-group button:active,
.multi-select button:active {
    transform: translateY(0);
}

/* Selected */


.button-group button.selected,
.multi-select button.selected {
    animation: softSelect 0.35s cubic-bezier(.16,1,.3,1);
}

@keyframes softSelect {
    0% {
        transform: scale(0.98);
    }
    60% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}


/* ===============================
   PRIMARY ACTION BUTTONS
================================ */

.next-btn,
.prev-btn,
.btn {
    position: relative;
    padding: 14px 26px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.5px;

    transition:
        transform 0.2s cubic-bezier(.4,0,.2,1),
        background 0.25s ease;
}

/* Hover */
.next-btn:hover,
.prev-btn:hover,
.btn:hover {
    transform: translateY(-2px);
}

/* Press */
.next-btn:active,
.prev-btn:active,
.btn:active {
    transform: translateY(0);
}

/* Subtle fade on disabled */
.next-btn:disabled,
.prev-btn:disabled,
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn.submit {
  float: right;
}

/* ===============================
  NOTICE
================================ */

.form-notice {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);

    margin-bottom: 0;
    padding: 0 18px;

    font-size: 14px;
    border-radius: 4px;

    transition:
        max-height 0.35s cubic-bezier(.4,0,.2,1),
        opacity 0.25s ease,
        transform 0.25s ease,
        margin 0.25s ease,
        padding 0.25s ease;
}

.form-notice.show {
    max-height: 200px; /* large enough to fit content */
    opacity: 1;
    transform: translateY(0);

    margin-bottom: 20px;
    padding: 14px 18px;
}

.form-notice.success {
    background: #e8f5e9;
    color: #1b5e20;
}

.form-notice.error {
    background: #fdecea;
    color: #b71c1c;
}
/* ===============================
   CONSENT CHECKBOX
================================ */

.consent-wrapper {
    margin: 20px 0;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.consent-checkbox a {
    color: #000;
    text-decoration: underline;
}

.consent-checkbox a:hover {
    opacity: 0.7;
}
.text-link {
    display: inline-block;
    margin-top: 12px;
    text-decoration: none;
    font-weight: 500;
    color: #000;
    border-bottom: 1px solid #000;
    transition: opacity 0.3s ease;
}

.text-link:hover {
    opacity: 0.6;
}
