.con-inner {
    margin-top: 18vw;
}


/* ============================================
   CONTACT PAGE HEADER
   ============================================ */

.contact-header-section {
    width: 100%;
    padding: 4vw 1%;
}

.contact-header-wrapper {
    max-width: 1400px;
    /*margin: 0 auto;*/
}

.contact-page-title {
    font-size: clamp(2.5rem, 6vw, 8rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.9;
    color: #fff;
    margin: 0;
}

/* ============================================
   MAIN CONTACT SECTION (Two Columns)
   ============================================ */

.contact-main-section {
    width: 100%;
    padding: 4vw 5%;
}

.contact-main-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
    align-items: start;
}

/* Contact Details Column */
.contact-details-column {
    display: flex;
    flex-direction: column;
    gap: 3vw;
}

.contact-details-header {
    margin-bottom: 1vw;
}

.contact-section-title {
    font-size: clamp(1.5rem, 2.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 1.5vw 0;
}

.contact-section-subtitle {
    font-size: clamp(1.2rem, 2vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}

.contact-info-item {
    display: flex;
    gap: 2vw;
    padding: 2vw;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.5vw 0;
}

.contact-info-link,
.contact-info-text {
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    color: #fff;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.contact-info-link:hover {
    color: #fff;
    opacity: 1;
}

.contact-info-text {
    margin: 0;
    line-height: 1.6;
}

/* Contact Form Column */
.contact-form-column {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.contact-form-header {
    margin-bottom: 1vw;
}

.contact-form-title {
    font-size: clamp(1.5rem, 2.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 1vw 0;
}

.contact-form-subtitle {
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    color: #fff;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* ============================================
   MAP SECTION
   ============================================ */

.contact-map-section {
    width: 100%;
    padding: 4vw 5%;
}

.contact-map-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.contact-map-container {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ============================================
   OLD CONTACT DETAILS (for backward compatibility)
   ============================================ */

.contact-details-holder {
    flex-wrap: wrap;
}

.contact-info-right {
    width: 34%;
}

.contact-info-left {
    display: flex;
    flex-wrap: wrap;
}

.contact-info-holder {
    margin-bottom: 0.5vw;
}

.small-contact-text {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    line-height: 1.4;
}

/* ============================================
   CONTACT FORM STYLES
   ============================================ */

.contact-form-section {
    width: 100%;
    padding: 4vw 1vw;
    margin-top: 4vw;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1.5rem);
}

.form-row {
    display: flex;
    gap: 2vw;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: clamp(0.875rem, 1.2vw, 1.5rem) clamp(1rem, 1.5vw, 2rem);
    background: linear-gradient(164deg,rgba(11, 80, 140, 1) 0%, rgb(18 61 99 / 27%) 100%);
    border: 1px solid #6b6b6bb4;
    color: #fff;
    font-size: clamp(0.9rem, 1.1vw, 1.2rem);
    font-family: inherit;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    outline: none;
    border-radius: 8px;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #79a8ff9c;
    background-color: #d8d8d8c4;
    color: #1a1a1a;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #ffffff;
}

.form-textarea {
    resize: vertical;
    min-height: clamp(120px, 15vw, 200px);
    font-family: inherit;
}

.submit-btn {
    padding: clamp(0.875rem, 1.2vw, 1.5rem) clamp(2rem, 3vw, 4rem);
    background-color: #161616;
    color: #fff;
    border: none;
    font-size: clamp(0.9rem, 1.1vw, 1.2rem);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
    margin-top: 0.5vw;
    border-radius: 8px;
}

.submit-btn:hover {
    background-color: #242424;
    transform: translateY(-2px);
}

.submit-btn:active {
    background-color: #161616;
    transform: translateY(0);
}

/* RTL: form and contact info in Arabic */
html[dir="rtl"] .form-input,
html[dir="rtl"] .form-textarea,
html[lang="ar"] .form-input,
html[lang="ar"] .form-textarea {
    text-align: right;
}

html[dir="rtl"] .contact-info-item,
html[lang="ar"] .contact-info-item {
    flex-direction: row-reverse;
}

/* ============================================
   SAY HELLO SECTION RESPONSIVE
   ============================================ */

.say-hello-holder {
    width: 100%;
    overflow: hidden;
}

.h1-subpage.contact {
    font-size: clamp(3rem, 8vw, 12rem);
}

/* ============================================
   LARGE DESKTOPS (1920px and above)
   ============================================ */

@media screen and (min-width: 1920px) {
    .con-inner {
        margin-top: 8vw;
    }

    .contact-header-section {
        padding: 5vw 1%;
    }

    .contact-main-section {
        padding: 5vw 5%;
    }

    .contact-map-section {
        padding: 5vw 5%;
    }

    .contact-main-wrapper {
        gap: 8vw;
    }

    .contact-map-container {
        height: 70vh;
        min-height: 500px;
    }

    .contact-form-section {
        padding: 5vw 2vw;
    }

    .contact-details-holder {
        padding: 4vw 5%;
    }
}

/* ============================================
   STANDARD DESKTOPS (1440px - 1920px)
   ============================================ */

@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .con-inner {
        margin-top: 15vw;
    }

    .contact-header-section {
        padding: 4vw 1%;
    }

    .contact-main-section {
        padding: 4vw 4%;
    }

    .contact-map-section {
        padding: 4vw 4%;
    }

    .contact-main-wrapper {
        gap: 6vw;
    }

    .contact-map-container {
        height: 65vh;
        min-height: 450px;
    }

    .contact-details-holder {
        padding: 3vw 4%;
    }
}

/* ============================================
   MEDIUM DESKTOPS / LAPTOPS (1200px - 1440px)
   ============================================ */

@media screen and (min-width: 1200px) and (max-width: 1439px) {
    .con-inner {
        margin-top: 5vw;
    }

    .contact-header-section {
        padding: 4vw 1%;
    }

    .contact-main-section {
        padding: 4vw 3%;
    }

    .contact-map-section {
        padding: 4vw 3%;
    }

    .contact-main-wrapper {
        gap: 5vw;
    }

    .contact-map-container {
        height: 60vh;
        min-height: 400px;
    }

    .contact-details-holder {
        padding: 3vw 3%;
    }

    .contact-info-right {
        width: 40%;
    }

    .contact-form-section {
        padding: 3.5vw 2vw;
    }
}

/* ============================================
   SMALL LAPTOPS (1024px - 1200px)
   ============================================ */

@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .con-inner {
        margin-top: 20vw;
    }

    .contact-details-holder {
        padding: 2.5vw 3%;
        flex-direction: column;
    }

    .contact-info-right {
        width: 100%;
        margin-bottom: 2vw;
    }

    .contact-info-left {
        width: 100%;
        flex-wrap: wrap;
        gap: 2vw;
    }

    .contact-info-holder {
        flex: 1;
        min-width: calc(33.333% - 1.5vw);
    }

    .contact-form-section {
        padding: 3vw 2vw;
    }

    .contact-form-title {
        font-size: 2.5vw;
    }
}

/* ============================================
   TABLETS (768px - 1024px)
   ============================================ */

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .con-inner {
        margin-top: 12vw;
    }

    .contact-header-section {
        padding: 3rem 2rem;
    }

    .contact-main-section {
        padding: 3rem 2rem;
    }

    .contact-map-section {
        padding: 3rem 2rem;
    }

    .contact-main-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-details-column {
        gap: 2rem;
    }

    .contact-info-item {
        padding: 1.5rem;
    }

    .contact-form-column {
        gap: 1.5rem;
    }

    .contact-map-container {
        height: 50vh;
        min-height: 350px;
    }

    .contact-details-holder {
        flex-direction: column;
        padding: 3rem 2rem;
        align-items: flex-start;
    }

    .contact-info-right {
        width: 100%;
        margin-bottom: 2rem;
    }

    .contact-info-left {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .contact-info-holder {
        flex: 1;
        min-width: calc(50% - 1rem);
        padding-left: 0;
    }

    .contact-info-holder.first {
        padding-left: 0;
    }

    .contact-form-section {
        padding: 3rem 2rem;
        margin-top: 3rem;
    }

    .contact-form-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .contact-form {
        gap: 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-input,
    .form-textarea {
        padding: 1rem;
        font-size: 1rem;
    }

    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .say-hello-holder {
        transform: translateY(-110%);
        top: 19%;
    }

    .h1-subpage.contact {
        font-size: 6vw;
    }
}

/* ============================================
   MOBILE LANDSCAPE / SMALL TABLETS (570px - 768px)
   ============================================ */

@media screen and (min-width: 570px) and (max-width: 767px) {
    .con-inner {
        margin-top: 8vw;
    }

    .contact-header-section {
        padding: 2.5rem 1.5rem;
    }

    .contact-main-section {
        padding: 2.5rem 1.5rem;
    }

    .contact-map-section {
        padding: 2.5rem 1.5rem;
    }

    .contact-main-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-details-column {
        gap: 1.5rem;
    }

    .contact-info-item {
        padding: 1.25rem;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
    }

    .contact-form-column {
        gap: 1.25rem;
    }

    .contact-map-container {
        height: 45vh;
        min-height: 300px;
        border-radius: 8px;
    }

    .contact-details-holder {
        flex-direction: column;
        padding: 2.5rem 1.5rem;
    }

    .contact-info-right {
        width: 100%;
        margin-bottom: 2rem;
    }

    .contact-info-left {
        width: 100%;
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-info-holder {
        width: 100%;
        padding-left: 0;
    }

    .contact-form-section {
        padding: 2.5rem 1.5rem;
        margin-top: 2.5rem;
    }

    .contact-form-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .say-hello-holder {
        transform: translateY(-120%);
    }

    .h1-subpage.contact {
        font-size: 7vw;
    }
}

/* ============================================
   MOBILE PORTRAIT (480px - 570px)
   ============================================ */

@media screen and (min-width: 480px) and (max-width: 569px) {
    .con-inner {
        margin-top: 6vw;
    }

    .contact-details-holder {
        padding: 2rem 1.25rem;
    }

    .contact-info-right {
        margin-bottom: 1.5rem;
    }

    .small-contact-text {
        font-size: 1rem;
    }

    .contact-form-section {
        padding: 2rem 1.25rem;
        margin-top: 2rem;
    }

    .contact-form-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    .form-textarea {
        min-height: 120px;
    }

    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .h1-subpage.contact {
        font-size: 8vw;
    }
}

/* ============================================
   SMALL MOBILE (< 480px)
   ============================================ */

@media screen and (max-width: 479px) {

    .contact-header-section {
        padding: 2rem 1rem;
    }

    .contact-main-section {
        padding: 2rem 1rem;
    }

    .contact-map-section {
        padding: 2rem 1rem;
    }

    .contact-main-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-page-title {
        font-size: clamp(1.5rem, 10vw, 2.25rem);
        line-height: 1.1;
    }

    .contact-details-column {
        gap: 1.25rem;
    }

    .contact-details-header {
        margin-bottom: 1.5rem;
    }

    .contact-section-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .contact-section-subtitle {
        font-size: 1rem;
    }

    .contact-info-item {
        padding: 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .contact-info-icon {
        width: 36px;
        height: 36px;
    }

    .contact-info-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-info-label {
        font-size: 0.9375rem;
    }

    .contact-info-link,
    .contact-info-text {
        font-size: 0.9375rem;
    }

    .contact-form-column {
        gap: 1.25rem;
    }

    .contact-form-header {
        margin-bottom: 1.5rem;
    }

    .contact-form-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-form-subtitle {
        font-size: 0.9375rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-group {
        width: 100%;
    }

    .contact-map-container {
        height: 40vh;
        min-height: 250px;
        border-radius: 8px;
    }

    .contact-details-holder {
        padding: 1.5rem 1rem;
        flex-direction: column;
    }

    .contact-info-right {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .contact-info-left {
        width: 100%;
        flex-direction: column;
        gap: 1.25rem;
    }

    .contact-info-holder {
        width: 100%;
        padding-left: 0;
        margin-bottom: 0;
    }

    .contact-info-holder.first {
        padding-left: 0;
    }

    .small-contact-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .contact-form-section {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .contact-form-wrapper {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.875rem 1rem;
        font-size: 1rem;
        min-height: 44px;
    }

    .form-textarea {
        min-height: 120px;
    }

    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        align-self: stretch;
        min-height: 48px;
    }

    .say-hello-holder {
        transform: translateY(-130%);
        top: 15%;
    }

    .h1-subpage.contact {
        font-size: 9vw;
    }

    .hello-little-smaller {
        font-size: 12vw;
    }
}

/* ============================================
   SPECIFIC BREAKPOINT OVERRIDES
   ============================================ */

@media screen and (min-width: 1444px) and (max-width: 1669px) {
    .con-inner {
        margin-top: 10vw;
        margin: 10vw 5vh 0 0;
    }
}

/* ============================================
   LANDSCAPE ORIENTATION ADJUSTMENTS
   ============================================ */

@media screen and (max-width: 1024px) and (orientation: landscape) {
    .con-inner {
        margin-top: 8vw;
    }

    .contact-details-holder {
        padding: 2rem 2rem;
    }

    .contact-form-section {
        padding: 2rem 2rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .contact-form-section {
        padding: 1rem;
    }

    .submit-btn {
        display: none;
    }
}
