/* ==========================================

   CONTACT PAGE

========================================== */

 

.contact-page {

    min-height: calc(100vh - 112px);

    display: grid;

    grid-template-columns: 1fr 1.08fr;

    background: #050505;

    border-bottom: 1px solid var(--border);

}

 

/* ==========================================

   CONTACT HEADER

========================================== */

 

.contact-header {

    height: 112px;

    min-height: 112px;

    padding: 0 42px;

    overflow: visible;

}

 

.contact-logo-link {

    width: 350px;

    min-width: 350px;

    height: 108px;

 

    display: flex;

    align-items: center;

    justify-content: center;

 

    flex-shrink: 0;

    overflow: visible;

}

 

.contact-header-logo {

    display: block;

 

    width: 325px;

    height: 100px;

    max-height: none;

 

    object-fit: contain;

    object-position: center;

 

    margin-top: 5px;

}

 

/* ==========================================

   LEFT SIDE — FORM

========================================== */

 

.contact-form-section {

    position: relative;

    min-height: 850px;

    padding: 62px 70px 75px;

    overflow: hidden;

 

    border-left: 1px solid rgba(201, 164, 90, 0.25);

 

    background:

        linear-gradient(

            rgba(5, 5, 5, 0.84),

            rgba(5, 5, 5, 0.94)

        ),

        radial-gradient(

            circle at 50% 18%,

            rgba(201, 164, 90, 0.08),

            transparent 34%

        ),

        #070707;

}

 

.contact-form-section::before {

    content: "";

    position: absolute;

    inset: 0;

 

    opacity: 0.3;

    pointer-events: none;

 

    background-image:

        linear-gradient(

            115deg,

            transparent 0%,

            transparent 48%,

            rgba(201, 164, 90, 0.025) 49%,

            transparent 50%

        );

 

    background-size: 100px 100px;

}

 

.contact-form-inner {

    position: relative;

    z-index: 2;

 

    width: min(100%, 560px);

    margin: 0 auto;

 

    text-align: center;

}

 

.contact-label {

    margin-bottom: 10px;

 

    color: var(--gold);

    font-family: var(--font-main);

    font-size: 20px;

    letter-spacing: 7px;

 

    direction: ltr;

}

 

/* ==========================================

   Z LOGO

========================================== */

 

.contact-brand-mark {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 24px;

 

    margin-top: -4px;

    margin-bottom: 12px;

}

 

.contact-line {

    width: 115px;

    height: 1px;

 

    background: linear-gradient(

        90deg,

        transparent,

        rgba(201, 164, 90, 0.78)

    );

}

 

.contact-line:last-child {

    background: linear-gradient(

        90deg,

        rgba(201, 164, 90, 0.78),

        transparent

    );

}

 

.contact-z-logo-wrap {

    position: relative;

 

    width: 142px;

    height: 122px;

 

    display: flex;

    align-items: center;

    justify-content: center;

 

    overflow: hidden;

    background: transparent;

 

    -webkit-mask-image: radial-gradient(

        ellipse at center,

        #000 0%,

        #000 40%,

        rgba(0, 0, 0, 0.82) 58%,

        rgba(0, 0, 0, 0.28) 76%,

        transparent 100%

    );

 

    mask-image: radial-gradient(

        ellipse at center,

        #000 0%,

        #000 40%,

        rgba(0, 0, 0, 0.82) 58%,

        rgba(0, 0, 0, 0.28) 76%,

        transparent 100%

    );

}

 

.contact-z-logo-wrap::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

 

    pointer-events: none;

 

    background: radial-gradient(

        ellipse at center,

        rgba(5, 5, 5, 0.08) 0%,

        rgba(5, 5, 5, 0.25) 46%,

        rgba(5, 5, 5, 0.68) 72%,

        #050505 100%

    );

}

 

.contact-z-logo {

    position: relative;

    z-index: 1;

 

    display: block;

 

    width: 112px;

    height: 112px;

 

    object-fit: contain;

    object-position: center;

 

    mix-blend-mode: screen;

 

    filter:

        brightness(1.12)

        contrast(1.08)

        drop-shadow(0 0 8px rgba(201, 164, 90, 0.18));

}

 

/* ==========================================

   CONTACT TITLES

========================================== */

 

.contact-form-inner h1 {

    margin-bottom: 4px;

    background: linear-gradient(
        180deg,
        #F7E9BF 0%,
        #E5C87D 38%,
        #C89A42 72%,
        #A7772F 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    font-family: var(--font-main);

    font-size: clamp(42px, 4vw, 57px);

    line-height: 1.15;

    font-weight: 400;

    text-shadow:
        0 0 18px rgba(201,164,90,.12);

}
 

.contact-form-inner h2 {

    margin-bottom: 34px;

    color: #D6B468;

    font-family: var(--font-main);

    font-size: clamp(27px, 2.5vw, 36px);

    line-height: 1.25;

    font-weight: 400;

    letter-spacing: .3px;

}
 

.contact-intro {

    margin-bottom: 30px;

 

    color: var(--gray-soft);

    font-size: 20px;

    line-height: 1.7;

}

 

 

/* ==========================================

   FORM

========================================== */

 

.contact-form {

    margin-top: 55px;

 

    display: flex;

    flex-direction: column;

    gap: 26px;

 

    position: relative;

}

 

.form-field {

    position: relative;

}

 

.form-field label {

    position: absolute;

    top: 11px;

    right: 22px;

    z-index: 5;

 

    color: var(--gold-light);

 

    font-size: 15px;

    letter-spacing: 0.5px;

 

    pointer-events: none;

}

 

.form-field input,

.form-field textarea {

    width: 100%;

 

    box-sizing: border-box;

 

    background: #050505 !important;

 

    border: 1px solid rgba(201, 164, 90, 0.55);

    border-radius: 2px;

 

    color: #ffffff !important;

    -webkit-text-fill-color: #ffffff !important;

    caret-color: var(--gold-light);

 

    font-family: var(--font-main);

    font-size: 18px;

 

    outline: none;

 

    transition:

        border-color 0.35s ease,

        box-shadow 0.35s ease,

        background 0.35s ease;

}

 

.form-field input {

    height: 72px;

 

    padding-top: 43px;

    padding-right: 22px;

    padding-bottom: 5px;

    padding-left: 22px;

 

    line-height: 22px;

}

 

.form-field textarea {

    min-height: 190px;

 

    padding-top: 39px;

    padding-right: 22px;

    padding-bottom: 20px;

    padding-left: 22px;

 

    line-height: 1.8;

 

    resize: vertical;

    overflow-y: auto;

}

 

.form-field input:hover,

.form-field textarea:hover {

    border-color: rgba(225, 196, 122, 0.75);

}

 

.form-field input:focus,

.form-field textarea:focus {

    background: #050505 !important;

 

    border-color: var(--gold-light);

 

    box-shadow:

        0 0 0 1px rgba(201, 164, 90, 0.18),

        0 0 18px rgba(201, 164, 90, 0.08);

}

 

/* שומר על רקע שחור גם במילוי אוטומטי של Chrome ו־Edge */

 

.form-field input:-webkit-autofill,

.form-field input:-webkit-autofill:hover,

.form-field input:-webkit-autofill:focus,

.form-field textarea:-webkit-autofill,

.form-field textarea:-webkit-autofill:hover,

.form-field textarea:-webkit-autofill:focus {

    -webkit-text-fill-color: #ffffff !important;

    caret-color: var(--gold-light);

 

    -webkit-box-shadow:

        0 0 0 1000px #050505 inset !important;

 

    box-shadow:

        0 0 0 1000px #050505 inset !important;

 

    border: 1px solid rgba(201, 164, 90, 0.55);

 

    transition: background-color 9999s ease-in-out 0s;

}

 

/* מסתיר את שדה האבטחה של Formspree */

 

.form-honeypot {

    position: absolute !important;

 

    width: 1px !important;

    height: 1px !important;

 

    padding: 0 !important;

    margin: -1px !important;

 

    border: 0 !important;

 

    overflow: hidden !important;

    clip: rect(0, 0, 0, 0) !important;

    white-space: nowrap !important;

 

    opacity: 0 !important;

    pointer-events: none !important;

}

 

/* הודעת הצלחה או שגיאה */

 

.form-status {

    min-height: 24px;

    margin-top: 10px;

 

    color: var(--gold-light);

 

    font-size: 15px;

    text-align: center;

 

    transition: color 0.35s ease;

}

 

.form-status.error {

    color: #d78d8d;

}

/* ==========================================

   SUBMIT BUTTON

========================================== */

 

.contact-submit-button {

    min-height: 64px;

    margin-top: 9px;

 

    display: flex;

    align-items: center;

    justify-content: center;

 

    font-family: var(--font-main);

    font-size: 22px;

 

    cursor: pointer;

}

 

.contact-submit-button:disabled {

    cursor: wait;

    opacity: 0.72;

}

 

.form-status {

    min-height: 28px;

    margin-top: 4px;

 

    color: var(--gold-light);

    font-size: 16px;

    text-align: center;

}

 

.form-status.error {

    color: #e2a2a2;

}

/* ==========================================

   RIGHT SIDE

========================================== */

.contact-details-section {
    min-height: 850px;
    display: flex;
    flex-direction: column;
    background: #050505;
}

.contact-visual {
    position: relative;
    height: 520px;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid rgba(201, 164, 90, 0.28);
    background: #050505;
}

.contact-ring-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.01);
    filter:
        brightness(0.9)
        contrast(1.08)
        saturate(0.94);
    transition:
        transform 1.2s ease,
        filter 1.2s ease;
}

.contact-visual:hover .contact-ring-image {
    transform: scale(1.045);
    filter:
        brightness(0.94)
        contrast(1.1)
        saturate(0.98);
}

.contact-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.12) 0%,
            transparent 18%,
            transparent 78%,
            rgba(5, 5, 5, 0.52) 100%
        ),
        linear-gradient(
            180deg,
            transparent 0%,
            transparent 72%,
            rgba(5, 5, 5, 0.32) 100%
        );
}

.contact-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.78;
    background-image:
        radial-gradient(circle, rgba(255, 238, 187, 0.9) 0 1px, transparent 1.8px),
        radial-gradient(circle, rgba(201, 164, 90, 0.48) 0 0.8px, transparent 1.5px);
    background-size:
        118px 118px,
        79px 79px;
    background-position:
        18px 26px,
        44px 12px;
    mask-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.5) 0%,
        #000 52%,
        transparent 100%
    );
}

.contact-visual-arc {
    position: absolute;
    z-index: 4;
    top: -7%;
    right: -17%;
    width: 58%;
    height: 116%;
    border: 1px solid rgba(218, 179, 88, 0.84);
    border-left: none;
    border-radius: 0 100% 100% 0;
    pointer-events: none;
    opacity: 0.92;
    box-shadow:
        10px 0 28px rgba(201, 164, 90, 0.07),
        inset -2px 0 0 rgba(255, 232, 174, 0.08);
}

.contact-visual-arc::after {
    content: "";
    position: absolute;
    inset: 14px 12px 14px 0;
    border: 1px solid rgba(201, 164, 90, 0.3);
    border-left: none;
    border-radius: 0 100% 100% 0;
}

/* ==========================================

   CONTACT DETAILS

========================================== */

 

.contact-details-list{

 

    width:min(calc(100% - 90px),760px);

 

    margin:0 auto;

    padding:15px 0 40px;

 

}

 

.contact-detail {

    min-height: 108px;

    display: grid;

    grid-template-columns: 68px 145px minmax(320px, 1fr);

    align-items: center;

    gap: 16px;

    direction: ltr;

    border-bottom: 1px solid rgba(201, 164, 90, .42);

    transition: .35s ease;

}



 



 

.contact-detail:hover{

 

    transform:translateX(5px);

 

    border-color:rgba(225,196,122,.72);

 

    background:linear-gradient(

        90deg,

        rgba(201,164,90,.05),

        transparent

    );

 

}

 

.contact-detail-icon{

 

    width:60px;

    height:60px;

 

    border-radius:50%;

    border:1px solid rgba(201,164,90,.72);

 

    display:flex;

    align-items:center;

    justify-content:center;

 

    color:var(--gold-light);

 

    font-size:26px;

 

    transition:.35s;

 

}

 

.contact-detail:hover .contact-detail-icon{

 

    transform:scale(1.08);

 

    color:#f3d687;

 

    border-color:var(--gold-light);

 

    box-shadow:

 

        0 0 14px rgba(201,164,90,.18),

 

        inset 0 0 12px rgba(201,164,90,.08);

 

}

 

.contact-detail-title{

 

    color:var(--gold-light);

 

    font-size:18px;

 

    letter-spacing:1px;

 

    text-align:left;

 

}

 

.contact-detail-value {

    color: var(--white);

    font-size: 17px;

    letter-spacing: .35px;

    text-align: left;

    white-space: nowrap;

    word-break: normal;

    overflow-wrap: normal;

}

 

/* ==========================================

   RESPONSIVE

========================================== */

 

@media(max-width:1100px){

 

.contact-header{

 

    height:96px;

    min-height:96px;

 

    padding-inline:28px;

 

}

 

.contact-logo-link{

 

    width:285px;

    min-width:285px;

    height:92px;

 

}

 

.contact-header-logo{

 

    width:265px;

    height:88px;

 

}

 

.contact-page{

 

    min-height:calc(100vh - 96px);

 

    grid-template-columns:1fr;

 

}

 

.contact-form-section{

 

    order:2;

 

    border-left:none;

 

    border-top:1px solid var(--border);

 

}

 

.contact-details-section{

 

    order:1;

 

}

 

}

 

@media(max-width:768px){

    .contact-ring-image {
        object-position: center top;
        transform: scale(1.01);
    }

    .contact-visual:hover .contact-ring-image {
        transform: scale(1.02);
    }

    .contact-visual-arc {
        top: -4%;
        right: -30%;
        width: 78%;
        height: 108%;
        opacity: 0.72;
    }


 

.contact-page{

 

    display:block;

 

}

 

.contact-logo-link{

 

    display:none;

 

}

 

.contact-form-section{

 

    padding:55px 22px 65px;

 

}

 

.contact-visual{

 

    height: 360px;

 

}
.contact-details-list{

 

    width:calc(100% - 38px);

 

}

 

.contact-detail{

 

    grid-template-columns:58px 1fr;

 

    gap:12px;

 

    padding:18px 0;

 

}

 

.contact-detail-icon{

 

    grid-column:1;

    grid-row:1 / span 2;

 

    width:50px;

    height:50px;

 

    font-size:22px;

 

}

 

.contact-detail-title{

 

    grid-column:2;

    grid-row:1;

 

}

 

.contact-detail-value {

    grid-column: 2;

    grid-row: 2;

    font-size: 14px;

    white-space: normal;

    word-break: break-word;

    overflow-wrap: anywhere;

}

 

}

 

@media(max-width:480px){

    .contact-ring-image {
        object-position: center top;
    }

    .contact-visual-arc {
        right: -38%;
        width: 92%;
    }


 

.contact-form-section{

 

    padding-inline:16px;

 

}

 

.contact-line{

 

    width:66px;

 

}

 

.contact-z-logo-wrap{

 

    width:108px;

    height:96px;

 

}

 

.contact-z-logo{

 

    width:84px;

    height:84px;

 

}

 

.contact-visual{

 

    height: 300px;

 

}

 

}