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

.contact-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

/* HERO - SAME AS OUR STORY */
.contact-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg, #0a0a0a, #1a1a1a, #2a2a2a);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Floating shapes background */
.contact-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    opacity: 0.08;
}

.shape-1 {
    top: 10%;
    left: 10%;
    animation: float1 20s ease-in-out infinite;
}

.shape-2 {
    top: 60%;
    right: 15%;
    animation: float2 25s ease-in-out infinite;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    animation: float3 30s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-40px, 30px) rotate(180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(40px, -20px) rotate(-120deg); }
    66% { transform: translate(-30px, 30px) rotate(-240deg); }
}

.contact-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 80px;
    animation: fadeInUp 1.2s ease-out;
}

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

.contact-hero__title {
    font-size: 140px;
    font-weight: 200;
    letter-spacing: -3.5px;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.1;
}

.contact-hero__subtitle {
    font-size: 22px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
}

.contact-hero__scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* MAIN SPLIT - SIMPLE GRID */
.contact-split {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 100vh;
}

/* FORM SIDE */
.contact-form-side {
    padding: 140px 100px 140px 80px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 70px;
    letter-spacing: -1.8px;
    color: #0a0a0a;
}

.form-field {
    margin-bottom: 50px;
    position: relative;
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #0a0a0a;
    margin-bottom: 18px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 22px 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    font-size: 24px;
    font-family: inherit;
    color: #0a0a0a;
    font-weight: 300;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-bottom-color: #C6682D;
}

.form-field textarea {
    resize: vertical;
    min-height: 180px;
}

.char-count {
    position: absolute;
    right: 0;
    bottom: -28px;
    font-size: 12px;
    color: #999;
}

.submit-button {
    width: 100%;
    padding: 30px;
    background: #0a0a0a;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.submit-button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #C6682D;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.submit-button:hover:before {
    width: 600px;
    height: 600px;
}

.submit-button span {
    position: relative;
    z-index: 2;
}

.submit-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* INFO SIDE */
.contact-info-side {
    padding: 140px 80px 140px 100px;
    background: #FAFAF8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-title {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 70px;
    letter-spacing: -1.8px;
    color: #0a0a0a;
}

.contact-card {
    padding: 50px;
    background: #fff;
    margin-bottom: 30px;
    border: 1px solid #e8e8e6;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    display: block;
    color: inherit;
}

.contact-card:hover {
    transform: translateX(12px);
    border-color: #C6682D;
    box-shadow: -8px 0 24px rgba(198, 104, 45, 0.12);
}

.contact-card__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 28px;
    display: block;
}

.contact-card__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #999;
    margin-bottom: 14px;
}

.contact-card__value {
    font-size: 26px;
    font-weight: 300;
    color: #0a0a0a;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
    .contact-hero__title {
        font-size: 110px;
    }
    .form-title,
    .info-title {
        font-size: 52px;
    }
}

@media (max-width: 1024px) {
    .contact-split {
        grid-template-columns: 1fr;
    }
    .contact-form-side {
        padding: 100px 60px;
    }
    .contact-info-side {
        padding: 100px 60px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 75vh;
    }
    .contact-hero__content {
        padding: 0 30px;
    }
    .contact-hero__title {
        font-size: 56px;
        letter-spacing: -1.5px;
    }
    .contact-hero__subtitle {
        font-size: 18px;
    }
    .contact-form-side {
        padding: 80px 30px;
    }
    .form-title {
        font-size: 38px;
    }
    .form-field input,
    .form-field textarea {
        font-size: 20px;
    }
    .contact-info-side {
        padding: 80px 30px;
    }
    .info-title {
        font-size: 38px;
    }
    .contact-card {
        padding: 35px 25px;
    }
    .contact-card__value {
        font-size: 22px;
    }
}


