:root {
    --bg-main: #f3f3f1;
    --bg-soft: #f7f6f3;
    --surface: rgba(255, 255, 255, 0.55);
    --text-main: #2f2f2f;
    --text-soft: #5f5f5a;
    --border-soft: rgba(0, 0, 0, 0.08);
    --accent: #d88a2d;
    --accent-hover: #c97d24;
}

/* בסיס */

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    padding: 0 40px 40px;
}

section {
    margin-bottom: 40px;
}

h1,
h2,
h3 {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 46px;
    margin: 8px 0;
    font-weight: 700;
    line-height: 1.05;
}

h2 {
    margin-bottom: 24px;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 700;
}

h3 {
    font-weight: 700;
}

section p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: -0.01em;
}

/* Header / Nav */

header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 0;
}

nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: transparent;
    padding: 0 36px;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.35s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-self: start;
    gap: 30px;
    height: 38px;
}

.nav-links a {
    text-decoration: none;
    color: var(--accent);
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 1;
    display: flex;
    align-items: center;
    height: 38px;
    letter-spacing: -0.02em;
    transition: opacity 0.35s ease, color 0.35s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(5px);
}

.nav-spacer {
    justify-self: end;
}

header.scrolled {
    padding: 0;
    transition: all 0.35s ease;
}

header.scrolled nav {
    background: rgba(243, 243, 241, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 18px 24px;
    border-radius: 0 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

header.scrolled .nav-links a {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    color: var(--accent);
}

header.scrolled .nav-links a:hover {
    color: var(--accent-hover);
}

/* Logo */

.logo {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%) scale(1.7);
    display: grid;
    place-items: center;
    z-index: 1200;
    width: 220px;
    transition:
        top 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo img {
    grid-area: 1 / 1;
    height: 38px;
    width: auto;
    display: block;
    transition: opacity 0.35s ease;
}

.logo-white {
    opacity: 1;
}

.logo-orange {
    opacity: 0;
}

header.scrolled .logo {
    top: 18px;
    transform: translateX(-50%) scale(1);
}

header.scrolled .logo-white {
    opacity: 0;
}

header.scrolled .logo-orange {
    opacity: 1;
}

/* Hero */

section:first-of-type {
    min-height: 100vh;
    padding: 90px 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    text-align: center;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.10)),
        url("orangeheronew.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: none;
    margin: -40px -40px 40px;
    border-radius: 0;
    position: relative;
}

section:first-of-type div {
    max-width: 760px;
}

/* Quick Links */

.quick-links-section {
    padding-top: 160px;
    padding-bottom: 50px;
}

.quick-links {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 56px;
    flex-wrap: wrap;
}

.quick-item {
    width: 280px;
    text-align: center;
}

.quick-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
}

.quick-item:hover .quick-icon {
    color: var(--accent);
    transform: translateY(-4px) scale(1.08);
}

.quick-item h3 {
    font-size: 2.05rem;
    line-height: 1.1;
    margin: 0 0 12px;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.quick-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-soft);
    font-weight: 400;
}

/* About */

.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    padding: 40px 0 20px;
}

.about-text-column {
    width: 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.about-heading h2 {
    margin: 0;
    font-size: 72px;
    line-height: 0.96;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.about-description {
    margin: 0 0 32px;
    color: var(--text-soft);
    font-weight: 400;
    letter-spacing: -0.01em;
     font-size: 18px;
        line-height: 1.7;
}

.about-main-image {
    width: 58%;
    display: flex;
    justify-content: center;
    border-radius: 18px;
}

.about-main-image img {
    width: 100%;
    max-width: 620px;
    height: 700px;
    object-fit: cover;
    display: block;
}

/* Process */

.process-section {
    padding: 100px 0;
    background: transparent;
    color: var(--text-main);
    margin: 40px 0;
}

.process-header {
    text-align: center;
    direction: rtl;
    margin-bottom: 80px;
}

.process-header h2 {
    margin: 0;
    font-size: 64px;
    line-height: 0.96;
    color: var(--text-main);
    text-align: center;
    direction: rtl;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.process-layout {
    display: grid;
    grid-template-columns: 0.85fr auto;
    gap: 60px;
    align-items: start;
    justify-content: center;
    direction: ltr;
}

.process-steps {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 500px;
}

.process-item {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 26px;
    transition: all 0.3s ease;
    overflow: hidden;
    direction: rtl;
    text-align: right;
}

.process-item.active {
    background: var(--bg-soft);
    border-color: rgba(216, 138, 45, 0.55);
    box-shadow: 0 10px 30px rgba(216, 138, 45, 0.08);
}

.process-trigger {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-main);
    font: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 26px 28px;
    cursor: pointer;
    direction: rtl;
    text-align: right;
}

.process-title {
    flex: 1;
    font-size: 29px;
    font-weight: 600;
    color: var(--text-main);
    text-align: right;
    direction: rtl;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.process-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    font-size: 18px;
    line-height: 1.85;
    color: var(--text-soft);
    transition: all 0.35s ease;
    text-align: right;
    direction: rtl;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.process-item.active .process-body {
    max-height: 220px;
    padding: 0 28px 26px;
}

.process-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
}

/* Process Icons */

/* אייקון 1 - שני ריבועים */
.icon-square {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1.8px solid var(--text-main);
    border-radius: 4px;
    transform: rotate(45deg);
    transition: all 0.25s ease;
}

.icon-square.filled {
    background: transparent;
    border-color: var(--text-main);
    transform: rotate(45deg) translate(-12px, 12px);
    opacity: 0.45;
}

.process-item.active .icon-square {
    border-color: var(--text-main);
    opacity: 0.45;
}

.process-item.active .icon-square.filled {
    background: var(--accent);
    border-color: var(--accent);
    opacity: 1;
}

/* אייקון 2 - שני משולשים */
.process-icon-double {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    direction: ltr;
}

.icon-chevron {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transition: all 0.25s ease;
}

.icon-chevron.left {
    border-left: 14px solid var(--text-main);
    opacity: 0.35;
}

.icon-chevron.right {
    border-left: 14px solid var(--text-main);
    opacity: 1;
}

.process-item.active .icon-chevron.left {
    border-left-color: var(--text-main);
    opacity: 0.28;
}

.process-item.active .icon-chevron.right {
    border-left-color: var(--accent);
    opacity: 1;
}

/* אייקון 3 - שכבות */
.icon-layers {
    position: relative;
    width: 30px;
    height: 22px;
    display: block;
}

.icon-layers .layer {
    position: absolute;
    right: 0;
    width: 28px;
    height: 12px;
    border: 1.8px solid var(--text-main);
    border-radius: 999px;
    background: var(--bg-soft);
    transition: all 0.25s ease;
}

.icon-layers .layer-top {
    top: -6px;
    z-index: 1;
}

.icon-layers .layer-middle {
    top: 0;
    z-index: 3;
}

.icon-layers .layer-bottom {
    top: 6px;
    z-index: 1;
}

.process-item.active .icon-layers .layer-middle {
    top: -1px;
    right: -1px;
    width: 30px;
    height: 14px;
    background: var(--accent);
    border-color: var(--accent);
}

.process-item:nth-child(3) .process-icon {
    transform: translateY(8px) translateX(-14px);
}

/* Process Media */

.process-media {
    width: fit-content;
    height: fit-content;
    min-height: unset;
    max-height: none;
    margin: 0 auto;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: hidden;
}

.process-media video {
    display: block;
    height: 750px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Locations */

.locations-section {
    padding: 90px 0;
    direction: rtl;
}

.locations-text {
    max-width: 760px;
    margin: 0 auto;
    text-align: right;
}

.locations-text h2 {
    font-size: 64px;
    line-height: 0.96;
    margin: 0 0 24px;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: -0.03em;
    text-align: center;
}

.locations-text p {
    font-size: 21px;
    line-height: 1.85;
    color: var(--text-soft);
    margin: 0 0 32px;
    font-weight: 400;
}

.location-slider {
    position: relative;
}

.location-card {
    display: none;
    gap: 32px;
    align-items: center;
}

.location-card.active {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

.location-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.location-content h3 {
    font-size: 36px;
    line-height: 1.08;
    margin: 0 0 18px;
    color: var(--text-main);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.location-content p {
    font-size: 19px;
    line-height: 1.85;
    color: var(--text-soft);
    margin: 0;
    font-weight: 400;
}

.slider-controls {
    display: flex;
    flex-direction: row-reverse;
    gap: 14px;
    margin-top: -100px;
    margin-right: 300px;
}

.slider-btn {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--bg-soft);
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.25s ease;
    font-weight: 500;
}

.slider-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* FAQ */

.faq-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
    padding: 90px 0;
    direction: rtl;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.faq-title-side {
    align-self: start;
}

.faq-title-side h2 {
    font-size: 54px;
    line-height: 0.96;
    margin: 0 0 24px;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

.faq-title-side p {
    font-size: 21px;
    line-height: 1.85;
    color: var(--text-soft);
    margin: 0;
    max-width: 520px;
    font-weight: 400;
}

.faq-content-side {
    align-self: start;
}

.faq-search {
    margin: -8px 0 24px;
    display: flex;
    justify-content: flex-start;
}

.faq-search input {
    width: 420px;
    max-width: 100%;
    padding: 14px 20px;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    background: var(--bg-soft);
    color: var(--text-main);
    outline: none;
    letter-spacing: -0.01em;
}

.faq-search input:focus {
    border-color: var(--accent);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 500px;
}

.faq-list details {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 24px 0;
}

.faq-list summary {
    list-style: none;
    cursor: pointer;
    font-size: 23px;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    font-size: 28px;
    font-weight: 400;
    color: #999;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list p {
    margin: 16px 0 0;
    font-size: 18px;
    line-height: 1.85;
    color: var(--text-soft);
    max-width: 720px;
    font-weight: 400;
}

/* CONTACT */
.contact-section {
    padding: 90px 0;
    direction: rtl;
}

.contact-box {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: 28px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px 56px;
    align-items: start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    direction: ltr;
}

.contact-intro {
    grid-column: 2;
    grid-row: 1;
    direction: rtl;
    text-align: right;
}

.contact-side {
    grid-column: 2;
    grid-row: 2;
    direction: rtl;
    text-align: right;
}

.contact-info {
    flex: 0.95;
    max-width: 430px;
}

.contact-lead {
    margin: 0 0 22px;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.contact-description {
    margin: 0 0 30px;
    font-size: 19px;
    line-height: 1.9;
    color: var(--text-soft);
    font-weight: 400;
}

.contact-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    justify-content: flex-start;
}

.contact-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    text-decoration: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.contact-icon-btn svg {
    width: 24px;
    height: 24px;
    display: block;
    color: #fff;
}

.contact-icon-btn:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.contact-form {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row input {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    padding: 16px 18px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text-main);
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    text-align: right;
    direction: rtl;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8a867f;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(216, 138, 45, 0.08);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    align-self: flex-end;
    border: none;
    background: #b8652b;
    color: #fff;
    padding: 14px 30px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.contact-form button:hover {
    background: #a75721;
    transform: translateY(-1px);
}
/* ===== Media Queries ===== */

@media (max-width: 1000px) {
    .process-layout {
        grid-template-columns: 1fr;
    }

    .process-header h2 {
        font-size: 42px;
    }

    .process-title {
        font-size: 24px;
    }

    .locations-text h2 {
    font-size: 40px;
    margin-bottom: 16px;
    text-align: center;
}

    .location-card.active {
        grid-template-columns: 1fr;
    }

    .location-image img {
        height: 380px;
    }

    .location-content h3 {
        font-size: 30px;
    }

    .locations-section,
    .faq-section {
        gap: 36px;
        padding: 70px 0;
    }

    .faq-title-side h2 {
        font-size: 46px;
    }

    .faq-list summary {
        font-size: 24px;
    }

    .contact-box {
        flex-direction: column;
        gap: 38px;
        padding: 34px 24px;
    }

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

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .quick-links {
        gap: 42px;
    }

    .quick-item {
        width: 240px;
    }

    .quick-item h3 {
        font-size: 1.9rem;
    }
    
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    main {
        padding: 0 16px 28px;
    }

    section {
        margin-bottom: 32px;
    }

    h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    h2 {
        font-size: 34px;
        line-height: 1.05;
        margin-bottom: 18px;
    }

    section p {
        font-size: 16px;
        line-height: 1.75;
    }

    /* Header */
    header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1000;
        background: rgba(243, 243, 241, 0.96);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .nav-links,
    .nav-spacer {
        display: none !important;
    }

    nav,
    header.scrolled nav {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 68px;
        padding: 0 16px;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }

    .logo {
        position: static;
        left: auto;
        top: auto;
        width: auto;
        transform: none !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo img {
        height: 30px;
        width: auto;
    }

    .logo-white {
        display: none !important;
    }

    .logo-orange {
        opacity: 1 !important;
    }

    header.scrolled .logo {
        transform: none !important;
        top: auto;
    }

    /* Hero */
    section:first-of-type {
        padding-top: 92px;
        min-height: 42vh;
        margin: -24px -16px 24px;
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
            url("images/mobilehero.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* Quick links */
    .quick-links-section {
        padding-top: 40px;
        padding-bottom: 6px;
    }

    .quick-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 18px;
        justify-items: center;
        align-items: start;
    }

    .quick-item {
        width: 100%;
        max-width: 158px;
    }

    .quick-item:last-child {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .quick-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 10px;
    }

    .quick-item h3 {
        font-size: 1.02rem;
        margin-bottom: 6px;
        line-height: 1.25;
        font-weight: 600;
    }

    .quick-item p {
        font-size: 0.9rem;
        line-height: 1.55;
        margin: 0;
    }

    /* Process */
    .process-section {
        padding: 38px 0;
        margin: 16px 0;
    }

    .process-header {
        margin-bottom: 22px;
    }

    .process-header h2 {
        font-size: 36px;
    }

    .process-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .process-media {
        width: 100%;
        max-width: 100%;
        order: -1;
        margin: 0 auto;
        border-radius: 22px;
        overflow: hidden;
    }

    .process-media video {
        width: 100%;
        height: auto;
        max-height: 520px;
        object-fit: cover;
        border-radius: 22px;
        display: block;
    }

    .process-steps {
        height: auto;
        gap: 12px;
    }

    .process-item {
        border-radius: 22px;
    }

    .process-trigger {
        padding: 18px 16px;
        gap: 14px;
    }

    .process-title {
        font-size: 18px;
        line-height: 1.25;
    }

    .process-body {
        font-size: 14px;
        line-height: 1.75;
        padding: 0 16px;
    }

    .process-item.active .process-body {
        padding: 0 16px 16px;
    }

    .process-icon {
        width: 40px;
        height: 40px;
    }

    .process-item:nth-child(3) .process-icon {
        transform: translateY(4px) translateX(-6px);
    }

    /* About */
    .about-section {
        flex-direction: column;
        gap: 18px;
        padding: 8px 0 0;
    }

    .about-text-column,
    .about-main-image {
        width: 100%;
    }

    .about-main-image {
        order: 1;
        justify-content: center;
    }

    .about-main-image img {
        width: 100%;
        max-width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: center 68%;
        border-radius: 22px;
        display: block;
    }

    .about-text-column {
        order: 2;
    }

    .about-heading {
        justify-content: center;
        text-align: center;
        margin-bottom: 12px;
    }

    .about-heading h2 {
        font-size: 22px;
        line-height: 1.15;
        font-weight: 600;
        letter-spacing: -0.02em;
        color: var(--text-main);
        margin: 0;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.85;
        margin: 0;
        text-align: center;
        max-width: 100%;
        color: var(--text-soft);
    }

    /* Locations */
    .locations-section {
        padding: 34px 0 8px;
    }

    .locations-text {
        max-width: 100%;
        text-align: center;
    }

    .locations-text h2 {
        font-size: 34px;
        margin-bottom: 12px;
        text-align: center;
    }

    .locations-text p {
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 20px;
        text-align: center;
    }

    .location-card.active {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .location-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 20px;
        display: block;
    }

    .location-content {
        text-align: center;
    }

    .location-content h3 {
        font-size: 24px;
        margin-bottom: 8px;
        text-align: center;
    }

    .location-content p {
        font-size: 16px;
        line-height: 1.7;
        text-align: center;
    }

    .slider-controls {
        margin-top: 14px;
        margin-right: 0;
        justify-content: center;
    }

    .slider-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    /* FAQ */
    .faq-section {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 30px 0 34px;
    }

    .section-label {
        margin-bottom: 8px;
        font-size: 12px;
        text-align: center;
        display: block;
    }

    .faq-title-side {
        text-align: center;
    }

    .faq-title-side h2 {
        font-size: 34px;
        margin-bottom: 10px;
    }

    .faq-title-side p {
        font-size: 16px;
        line-height: 1.7;
        max-width: 100%;
        margin-bottom: 0;
    }

    .faq-search {
        margin: 0 0 12px;
    }

    .faq-search input {
        width: 100%;
        font-size: 16px;
        padding: 13px 16px;
    }

    .faq-list {
        min-height: auto;
    }

    .faq-list details {
        padding: 14px 0;
    }

    .faq-list summary {
        font-size: 18px;
        line-height: 1.35;
    }

    .faq-list p {
        font-size: 15px;
        line-height: 1.7;
        margin-top: 10px;
    }

    /* Contact */
    .contact-section {
        padding: 26px 0 30px;
    }

    .contact-box {
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 22px 18px;
        border-radius: 24px;
    }

    .contact-intro {
        order: 1;
        text-align: center;
        direction: rtl;
    }

    .contact-lead {
        font-size: 17px;
        line-height: 1.3;
        margin: 0 0 8px;
        color: #c88433;
        font-weight: 600;
        text-align: center;
    }

    .contact-description {
        font-size: 14px;
        line-height: 1.7;
        margin: 0;
        text-align: center;
    }

    .contact-form {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 12px;
        font-size: 14px;
        border-radius: 0;
    }

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

    .contact-form button {
        align-self: stretch;
        width: 100%;
        padding: 14px 18px;
        font-size: 15px;
    }

    .contact-side {
    order: 3;
    direction: rtl;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

    .contact-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 8px auto 0;
    width: 100%;
}

    .contact-icon-btn {
        width: 42px;
        height: 42px;
    }

    .contact-icon-btn svg {
        width: 21px;
        height: 21px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 24px;
    }

    .about-heading h2,
    .faq-title-side h2,
    .locations-text h2,
    .process-header h2 {
        font-size: 30px;
    }

    .process-title,
    .faq-list summary {
        font-size: 17px;
    }

    .contact-lead {
        font-size: 16px;
    }
}