﻿@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap");
:root {
    --base-100: #2e2e2e;
    --base-200: #3a3a39;
    --base-300: #f5f5f5;
    --nw-acc: #D47328;
    --nw-c-pad: 4rem;
    --nw-s-pad: clamp(4rem, 10vw, 10rem);
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
.element {
  cursor: none !important;
}
a, button, input, textarea, [role="button"] {
    outline: none !important;
}
input,
textarea,
button,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
}
html.lenis,
html.lenis body {
    height: auto;
}
html,
body {
    overflow-x: hidden;
    width: 100%;
    direction: rtl;
    text-align: right;
}
body {
    font-family: "Tajawal", sans-serif;
    background-color: var(--base-300);
}
::selection {
    background-color: rgba(212, 115, 40, 0.25);
    color: var(--base-100);
}
::-moz-selection {
    background-color: rgba(212, 115, 40, 0.25);
    color: var(--base-100);
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: var(--base-300);
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 115, 40, 0.4);
    border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D47328;
}
.btn,
.form-submit-btn {
    padding: 0.6rem 2.2rem 0.6rem 0.6rem !important;
    min-width: auto !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1.2rem !important;
    border-radius: 4rem !important;
    background-color: var(--base-300) !important;
    color: var(--base-100) !important;
    border: 1px solid rgba(24, 23, 23, 0.12) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-decoration: none !important;
    cursor: none !important;
}
.btn:hover,
.form-submit-btn:hover {
    background-color: #ffffff !important;
    color: var(--base-100) !important;
    border-color: var(--nw-acc) !important;
    transform: translateY(-3px);
}
.btn .btn-label-flxed span,
.form-submit-btn .btn-label-flxed span {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: inherit !important;
}
.btn .btn-icon-flxed,
.form-submit-btn .btn-icon-flxed {
    width: 3.2rem !important;
    height: 3.2rem !important;
    background-color: var(--nw-acc) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn:hover .btn-icon,
.form-submit-btn:hover .btn-icon {
    transform: scale(1.1);
}
.btn .btn-icon ion-icon,
.form-submit-btn .btn-icon ion-icon {
    font-size: 1.4rem !important;
    transform: rotate(180deg);
}
.contact-section-premium {
    position: relative;
    width: 100%;
    background-color: var(--base-300);
    color: var(--base-100);
    padding: 10rem 4rem 6rem 4rem;
    border-radius: 4rem 4rem 3rem 3rem;
    z-index: 25;
}
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 6rem;
}
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    text-align: right;
}
.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--nw-acc);
}
.contact-title {
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
}
.contact-title em {
    font-style: normal;
    color: var(--nw-acc);
    font-weight: 400;
}
.contact-sub {
    font-size: 1.15rem;
    opacity: 0.7;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.contact-form-wrapper {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    background: transparent;
}
.premium-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.form-row {
    display: flex;
    gap: 2rem;
}
.form-row .form-group {
    flex: 1;
}
.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}
.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(24, 23, 23, 0.2);
    padding: 1rem 0;
    font-size: 1.05rem;
    font-family: inherit;
    color: var(--base-100);
    transition: border-color 0.3s ease;
    resize: none;
    text-align: right;
}
.form-group label {
    position: absolute;
    top: 1rem;
    right: 0;
    font-size: 1rem;
    color: rgba(24, 23, 23, 0.6);
    pointer-events: none;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--nw-acc);
}
.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -1.2rem;
    font-size: 0.85rem;
    color: var(--nw-acc);
    font-weight: 600;
}
.form-footer-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}
.form-consent {
    flex: 1;
    text-align: right;
}
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: none !important;
    font-size: 0.95rem;
    color: rgba(24, 23, 23, 0.7);
}
.consent-text {
    display: inline;
    font-size: clamp(0.85rem, 1.5vw, 1rem); 
    color: rgba(24, 23, 23, 0.8);
    line-height: 1.6; 
    white-space: normal;
}
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: none !important;
    height: 0;
    width: 0;
}
.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(24, 23, 23, 0.2);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: transparent;
}
.checkmark::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}
.custom-checkbox:hover .checkmark {
    border-color: var(--nw-acc);
}
.custom-checkbox input:checked~.checkmark {
    background-color: var(--nw-acc);
    border-color: var(--nw-acc);
}
.custom-checkbox input:checked~.checkmark::after {
    transform: rotate(45deg) scale(1);
    opacity: 1;
}
.form-submit-btn {
    margin-right: auto;
}
.consent-text a {
    color: var(--nw-acc);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 115, 40, 0.25);
}
.consent-text a:hover {
    color: var(--base-100);
    border-bottom-color: var(--nw-acc);
}
.nw-footer {
    position: relative;
    background-color: var(--base-100);
    color: var(--base-300);
    padding: 0;
    z-index: 20;
    margin-top: -3rem;
    padding-top: 3rem;
}
.nw-footer-grid {
    display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 4rem;
            padding: var(--nw-s-pad) var(--nw-c-pad) 0.5rem var(--nw-c-pad);
            max-width: 1400px;
            margin: 0 auto;
}
.nw-footer-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.nw-footer-col .nw-logo-text {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.4s ease;
}
.nw-footer-col .nw-logo-text:hover {
    transform: translateY(-3px);
}
.nw-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}
.nw-footer-about {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.6;
    max-width: 600px;
}
.nw-social-label {
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.4;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.nw-footer-socials {
    display: flex;
    gap: 1rem;
}
.nw-footer-socials a {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(245, 245, 245, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--base-300);
    font-size: 1.2rem;
    transition: all 0.4s ease;
    text-decoration: none;
}
.nw-footer-socials a:hover {
    border-color: var(--nw-acc);
    color: var(--nw-acc);
    transform: translateY(-5px);
}
.nw-footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.nw-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.nw-footer-links a {
    color: var(--base-300);
    text-decoration: none;
    font-size: 1.1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}
.nw-footer-links a::before {
    content: "\2190";
    position: absolute;
    right: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--nw-acc);
    font-weight: bold;
}
.nw-footer-links a:hover {
    opacity: 1;
    color: var(--nw-acc);
    padding-right: 20px;
}
.nw-footer-links a:hover::before {
    right: 0;
    opacity: 1;
}
.nw-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    opacity: 0.7;
}
.nw-contact-item ion-icon {
    font-size: 1.4rem;
    color: var(--nw-acc);
}
.nw-footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem var(--nw-c-pad);
    border-top: 1px solid rgba(245, 245, 245, 0.05);
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.9rem;
    opacity: 0.4;
    text-align: center;
    line-height: 1.6;
}
.nw-footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--nw-c-pad);
    right: var(--nw-c-pad);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 245, 245, 0.06) 50%, transparent);
}
@media (hover: hover) and (pointer: fine) {
    body.has-custom-cursor,
    body.has-custom-cursor * {
        cursor: none !important;
    }
}
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--nw-acc);
    transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease;
}
.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(212, 115, 40, 0.4);
    transition: width 0.3s ease, height 0.3s ease, margin 0.3s ease, border 0.3s ease, background-color 0.3s ease;
}
.cursor-hover .cursor-ring {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 115, 40, 0.05);
    border-color: var(--nw-acc);
}
.cursor-hover .cursor-dot {
    transform: scale(1.5);
}
.cursor-clicking .cursor-ring {
    transform: scale(0.8);
    background-color: rgba(212, 115, 40, 0.2);
}
.cursor-text .cursor-dot {
    opacity: 1;
    width: 2px;
    height: 24px;
    border-radius: 2px;
}
.cursor-on-dark .cursor-dot {
    background-color: #fff;
}
.cursor-on-dark .cursor-ring {
    border-color: rgba(255, 255, 255, 0.4);
}
.cursor-on-dark.cursor-hover .cursor-dot {
    background-color: var(--nw-acc) !important;
}
.cursor-on-dark.cursor-hover .cursor-ring {
    border-color: var(--nw-acc) !important;
    background-color: rgba(212, 115, 40, 0.1);
}
@media (max-width: 1024px) {
    .contact-section-premium {
        padding: 6rem 3rem 6rem;
    }
    .contact-container {
        flex-direction: column;
        gap: 4rem;
    }
    .contact-info {
        max-width: 100%;
        text-align: center;
    }
    .contact-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
    .nw-footer-grid {
        grid-template-columns: 1fr 1fr;
                gap: 4rem 2rem;
    }
    .btn,
    .form-submit-btn {
        padding: 0.5rem 1.8rem 0.5rem 0.5rem !important;
        gap: 1rem !important;
    }
    .btn .btn-label-flxed span,
    .form-submit-btn .btn-label-flxed span {
        font-size: 0.95rem !important;
    }
    .btn .btn-icon-flxed,
    .form-submit-btn .btn-icon-flxed {
        width: 2.6rem !important;
        height: 2.6rem !important;
    }
    .btn .btn-icon-flxed ion-icon,
    .form-submit-btn .btn-icon-flxed ion-icon {
        font-size: 1.15rem !important;
    }
}
@media (max-width: 640px) {
    .contact-section-premium {
        border-radius: 0 0 2rem 2rem;
    }
    .contact-container {
        gap: 3rem;
    }
    .form-row {
        flex-direction: column;
        gap: 2.5rem;
    }
    .form-footer-action {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }
    .form-submit-btn {
        width: 100% !important;
        justify-content: space-between !important;
        margin-right: 0 !important;
    }
    .form-consent {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .nw-footer {
        padding-top: 5rem;
    }
    .nw-footer-grid {
        grid-template-columns: 1fr;
        padding: 5rem 1.5rem 3rem 1.5rem;
    }
    .nw-footer-col {
        text-align: right;
        align-items: flex-start;
    }
    .nw-footer-about {
        text-align: right;
        margin: 0;
    }
    .nw-footer-links {
        align-items: flex-start;
        text-align: right;
    }
    .nw-contact-item {
        justify-content: flex-start;
        text-align: right;
        flex-direction: row;
        gap: 1rem;
    }
    .nw-footer-socials {
        justify-content: flex-start;
    }
    .nw-social-wrapper {
        text-align: right;
        width: 100%;
    }
    .nw-footer-bottom {
        flex-direction: column;
    }
    .btn,
    .form-submit-btn {
        padding: 0.4rem 1.2rem 0.4rem 0.4rem !important;
        gap: 0.8rem !important;
    }
    .btn .btn-label-flxed span,
    .form-submit-btn .btn-label-flxed span {
        font-size: 0.85rem !important;
    }
    .btn .btn-icon-flxed,
    .form-submit-btn .btn-icon-flxed {
        width: 2rem !important; 
        height: 2rem !important;
    }
    .btn .btn-icon-flxed ion-icon,
    .form-submit-btn .btn-icon-flxed ion-icon {
        font-size: 1rem !important;
    }
    .nw-footer-grid {
                grid-template-columns: 1fr;
                padding: 5rem 1.5rem 3rem 1.5rem;
            }
    .nw-footer-bottom {
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    .contact-title {
        font-size: 2.2rem;
    }
    .lang-switch {
        left: 1.5rem;
        top: 1.5rem;
    }
}
@media (hover: hover) and (pointer: fine) {
    body.has-custom-cursor,
    body.has-custom-cursor * {
        cursor: none !important;
    }
}
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--nw-acc);
    margin-left: -3px;
    margin-top: -3px;
    transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease;
}
.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(212, 115, 40, 0.4);
    margin-left: -18px;
    margin-top: -18px;
    transition: width 0.3s ease, height 0.3s ease, margin 0.3s ease, border 0.3s ease, background-color 0.3s ease;
}
.cursor-hover .cursor-ring {
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    background-color: rgba(212, 115, 40, 0.05);
    border-color: var(--nw-acc);
}
.cursor-hover .cursor-dot {
    transform: scale(1.5);
}
.cursor-clicking .cursor-ring {
    transform: scale(0.8);
    background-color: rgba(212, 115, 40, 0.2);
}
.cursor-text .cursor-dot {
    opacity: 1;
    width: 2px;
    height: 24px;
    margin-left: -1px;
    margin-top: -12px;
    border-radius: 2px;
}
.cursor-on-dark .cursor-dot {
    background-color: #fff;
}
.cursor-on-dark .cursor-ring {
    border-color: rgba(255, 255, 255, 0.4);
}
.cursor-on-dark.cursor-hover .cursor-dot {
    background-color: var(--nw-acc) !important;
}
.cursor-on-dark.cursor-hover .cursor-ring {
    border-color: var(--nw-acc) !important;
    background-color: rgba(212, 115, 40, 0.1);
}
