/* Import Google Fonts - Assistant - חובה להיות השורה הראשונה בקובץ CSS */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;600;700&display=swap');

/* General Styling & Reset */
:root {
    /* Color Palette - Grey & Gold */
    --primary-grey: #3A3A3A;
    --secondary-grey: #666666;
    --light-grey: #F5F5F5;
    --medium-background-grey: #EAEAEA;
    --accent-gold: #B8860B;
    --dark-gold: #9E740A;
    --white: #FFFFFF;
    --success-green: #28a745;
    --error-red: #dc3545;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Assistant', sans-serif;
    line-height: 1.6;
    color: var(--secondary-grey);
    background-color: var(--white);
    direction: rtl; /* Default for Hebrew */
    text-align: right; /* Default for Hebrew */
    scroll-behavior: smooth;
    overflow-x: hidden;
    padding-top: 80px;
}

/* Prevents scrolling on body when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Container for consistent content width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-grey);
    font-weight: 700;
    margin-bottom: 25px;
}

h1 { font-size: 3.5em; }
h2 { font-size: 2.5em; }
h3 { font-size: 1.8em; }
h4 { font-size: 1.4em; }

p {
    margin-bottom: 1em;
    word-break: break-word; /* Ensures long words break to prevent overflow */
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-gold);
}

/* Global Image Responsiveness */
img {
    max-width: 100%; /* Ensures images scale down to fit their containers */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes extra space below images */
}

/* Buttons and Call to Actions (CTAs) */
.cta-button {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: capitalize;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
}

.cta-button:hover {
    background-color: var(--dark-gold);
    transform: translateY(-2px);
}

.cta-nav-button {
    background-color: var(--accent-gold);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-nav-button:hover {
    background-color: var(--dark-gold);
}

/* --- Header & Navigation --- */
.main-page-header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.nav-logo {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-grey);
    text-decoration: none;
    white-space: nowrap;
    margin-left: 20px;
}

.nav-logo:hover {
    color: var(--accent-gold);
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-links li a {
    color: var(--primary-grey);
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--accent-gold);
}

/* Hamburger menu for mobile */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-right: 20px; /* Adjust for LTR */
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-grey);
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Hamburger animation to 'X' */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 5px;
    margin-left: 20px; /* Adjust for LTR */
}

.language-switcher .lang-button {
    background-color: var(--light-grey);
    color: var(--primary-grey);
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid var(--medium-background-grey);
    white-space: nowrap;
}

.language-switcher .lang-button:hover {
    background-color: var(--medium-background-grey);
    color: var(--accent-gold);
}

.language-switcher .lang-button.active {
    background-color: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
    cursor: default;
}

.language-switcher .lang-button.active:hover {
    background-color: var(--accent-gold);
    color: var(--white);
}

/* --- Hero Section --- */
#hero-section {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

#hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

#hero-section .container {
    padding: 20px;
}

#hero-section h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

#hero-section h2 {
    font-size: 1.8em;
    margin-bottom: 40px;
    color: var(--light-grey);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* --- Section Styling --- */
section {
    padding: 80px 0;
    text-align: center;
}

.grey-background {
    background-color: var(--light-grey);
}

.light-grey-background {
    background-color: var(--medium-background-grey);
}

.section-intro {
    font-size: 1.15em;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary-grey);
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-item .icon-placeholder {
    font-size: 3em;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--primary-grey);
}

.feature-item p {
    font-size: 1em;
    color: var(--secondary-grey);
    margin-bottom: 0;
}

/* --- Service Items --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--primary-grey);
}

.service-item p {
    font-size: 1em;
    color: var(--secondary-grey);
    margin-bottom: 0;
}

/* --- Contact Buttons --- */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-button {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: block;
    text-decoration: none;
    color: var(--primary-grey);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-button .icon {
    font-size: 3em;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.contact-button h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--primary-grey);
}

.contact-button p {
    font-size: 1em;
    color: var(--secondary-grey);
    margin-bottom: 0;
}

/* --- Footer --- */
footer {
    background-color: var(--primary-grey);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9em;
}

footer .footer-logo {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

footer p {
    margin-bottom: 15px;
    color: var(--light-grey);
}

.footer-nav {
    margin-bottom: 15px;
}

.footer-nav a {
    color: var(--white);
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-gold);
}

.social-links a {
    color: var(--white);
    font-size: 1.2em;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 0;
}

/* --- NEW SECTIONS & ELEMENTS CSS --- */

/* General Intro Section */
.intro-section {
    background-color: var(--light-grey);
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    padding-top: calc(80px + 60px);
}

.intro-section h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--primary-grey);
}

.intro-section .intro-text {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    color: var(--secondary-grey);
}

/* --- New Sections Styling (index.html) --- */

/* About Diana Home Section */
#about-diana-home {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.about-diana-content {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: right;
}

.about-diana-content .about-text {
    flex: 1;
    max-width: 60%;
}

.about-diana-content .about-text h2 {
    font-size: 2.8em;
    margin-bottom: 25px;
    color: var(--primary-grey);
}

.about-diana-content .about-text p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--secondary-grey);
}

.about-diana-content .about-image {
    flex: 0 0 auto;
    width: 350px;
    height: 350px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-diana-content .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Small CTA Button for Sections */
.small-cta {
    padding: 10px 25px;
    font-size: 1em;
    margin-top: 20px;
}

/* Main Services Overview (index.html) */
#main-services {
    padding: 80px 0;
    background-color: var(--white);
}

#main-services h2 {
    margin-bottom: 20px;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.service-overview-item {
    background-color: var(--light-grey);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.service-overview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    background-color: var(--medium-background-grey);
}

.service-overview-item .icon {
    font-size: 3em;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.service-overview-item h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--primary-grey);
}

.service-overview-item p {
    font-size: 1em;
    color: var(--secondary-grey);
    margin-bottom: 0;
}

/* Testimonials Home Section */
#testimonials-home {
    padding: 80px 0;
    background-color: var(--medium-background-grey);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-item p {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--primary-grey);
}

.testimonial-item .client-info {
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 0.95em;
    direction: ltr;
    text-align: left;
}

.testimonial-item .client-info .insurance-type {
    color: var(--secondary-grey);
    font-weight: 400;
}

/* Companies Logo Strip */
#companies-logo-strip {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

#companies-logo-strip h2 {
    margin-bottom: 40px;
    font-size: 2em;
}

.logo-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.logo-strip img {
    max-height: 60px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(80%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-strip img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Specific Page Styling (why-choose-us.html) --- */

#why-choose-us-page.intro-section {
    padding-top: 100px;
    padding-bottom: 40px;
    background-color: var(--light-grey);
}

#diana-story {
    padding: 80px 0;
    background-color: var(--white);
}

.d-flex {
    display: flex;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.align-items-center {
    align-items: center;
}

.diana-story-text {
    flex: 1;
    padding-left: 50px;
    text-align: right;
}

.diana-story-text h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: var(--primary-grey);
}

.diana-story-text p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--secondary-grey);
}

.diana-story-image {
    flex-shrink: 0;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin-right: 50px;
}

.diana-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#our-advantages {
    padding: 80px 0;
}

#our-advantages .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

#our-advantages .feature-item {
    text-align: right;
}

/* --- Specific Page Styling (services.html) --- */
#services-intro.intro-section {
    padding-top: 100px;
    padding-bottom: 40px;
    background-color: var(--light-grey);
}

#services-section-full {
    padding: 80px 0;
}

.services-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--white);
    border: 1px solid var(--medium-background-grey);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.accordion-header {
    background-color: var(--primary-grey);
    color: var(--white);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: none;
    text-align: right;
    cursor: pointer;
    font-size: 1.5em;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: var(--dark-gold);
}

.accordion-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.4em;
}

.accordion-icon {
    width: 25px;
    height: 25px;
    position: relative;
    transition: transform 0.3s ease;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-icon::before {
    width: 100%;
    height: 3px;
}

.accordion-icon::after {
    width: 3px;
    height: 100%;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.accordion-content {
    background-color: var(--white);
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    text-align: right;
}

.accordion-content p {
    padding-top: 20px;
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--secondary-grey);
}

.accordion-content h4 {
    font-size: 1.2em;
    color: var(--primary-grey);
    margin-top: 20px;
    margin-bottom: 10px;
}

.accordion-content ul {
    list-style: none;
    padding-right: 20px;
    margin-bottom: 20px;
}

.accordion-content ul li {
    position: relative;
    margin-bottom: 8px;
    font-size: 1em;
    color: var(--secondary-grey);
}

.accordion-content ul li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    right: 0;
    top: 0;
    margin-right: -20px;
}

.accordion-content .cta-button {
    margin-top: 20px;
    margin-bottom: 25px;
    display: inline-block;
}

/* FAQ Accordion inside Service Accordion */
.faq-accordion {
    border-top: 1px solid var(--light-grey);
    margin-top: 20px;
    padding-top: 15px;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-header {
    background-color: var(--medium-background-grey);
    color: var(--primary-grey);
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: none;
    text-align: right;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.faq-header:hover {
    background-color: var(--light-grey);
}

.faq-header::after {
    content: '+';
    font-size: 1.2em;
    margin-right: 10px;
    transition: transform 0.2s ease;
}

.faq-header.active::after {
    content: '–';
    transform: rotate(0deg);
}

.faq-content {
    background-color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out, padding 0.2s ease-out;
    padding: 0 18px;
}

.faq-content p {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 0.95em;
    margin-bottom: 0;
    color: var(--secondary-grey);
}

.cta-general-text {
    margin-top: 40px;
    font-size: 1.15em;
    color: var(--primary-grey);
}

/* --- Specific Page Styling (contact.html) --- */
#contact-intro.intro-section {
    padding-top: 100px;
    padding-bottom: 40px;
    background-color: var(--light-grey);
}

#contact-details {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-detail-text {
    display: block;
    font-size: 1.05em;
    font-weight: 600;
    color: var(--accent-gold);
    margin-top: 15px;
}

/* Contact Form Section */
#contact-form-section {
    padding: 80px 0;
    background-color: var(--medium-background-grey);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: right;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-grey);
    font-size: 1.05em;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--medium-background-grey);
    border-radius: 5px;
    font-family: 'Assistant', sans-serif;
    font-size: 1em;
    color: var(--primary-grey);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .cta-button {
    width: auto;
    margin-top: 30px;
}

.form-status-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1em;
    text-align: center;
}

/* --- Office Info Section --- */
#office-info {
    padding: 100px 0;
    background-color: var(--light-grey);
}

#office-info h2 {
    text-align: center;
    color: var(--primary-grey);
    font-size: 2.8em;
    margin-bottom: 60px;
    font-weight: 700;
}

.office-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    justify-content: center;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.office-address,
.office-hours {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--medium-background-grey);
}

.office-address:hover,
.office-hours:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.office-address .icon,
.office-hours .icon {
    font-size: 4em;
    color: var(--accent-gold);
    margin-bottom: 25px;
    line-height: 1;
}

.office-address h3,
.office-hours h3 {
    font-size: 2em;
    color: var(--primary-grey);
    margin-bottom: 18px;
    font-weight: 600;
    text-align: right;
    width: 100%;
}

.office-address p,
.office-hours ul li,
.office-hours .appointment-text {
    font-size: 1.15em;
    color: var(--secondary-grey);
    line-height: 1.7;
    margin-bottom: 12px;
    text-align: right;
    width: 100%;
}

.office-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: right;
}

.office-hours .appointment-text {
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-grey);
}

.office-address .text-link {
    font-size: 1.15em;
    font-weight: 700;
    color: var(--accent-gold);
    text-decoration: none;
    margin-top: 20px;
    align-self: flex-end;
    transition: color 0.3s ease, transform 0.3s ease;
}

.office-address .text-link:hover {
    color: var(--dark-gold);
    transform: translateX(-5px);
}

/* ============================================= */
/* ============ MOBILE SPECIFIC STYLES ========= */
/* ============================================= */

@media (max-width: 767px) {
    /* Global Mobile Adjustments */
    body {
        padding-top: 60px; /* Reduced padding to make space for smaller header */
        font-size: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    /* Header & Navigation Adjustments for Mobile */
    .main-page-header {
        min-height: 60px; /* Reduced header height */
        padding: 5px 0; /* Reduced vertical padding */
    }
    
    .hamburger-menu {
        display: flex;
        margin-left: 10px; /* Adjusted margin for better spacing */
        margin-right: 0;
    }
    
    .nav-logo {
        font-size: 1.3em; /* Reduced logo font size */
        margin-left: 0;
        margin-right: auto;
        white-space: normal; /* Allow logo text to wrap if too long */
        flex-shrink: 1; /* Allow logo to shrink if needed */
        min-width: 0; /* Allow it to shrink below content size */
    }
    
    .language-switcher {
        margin-left: 5px; /* Reduced margin */
        margin-right: 0;
        order: -1;
    }
    
    .language-switcher .lang-button {
        padding: 5px 8px; /* Slightly reduced button padding */
        font-size: 0.75em; /* Slightly reduced font size for buttons */
    }
    
    .main-nav {
        /* Ensure items don't overflow, allow wrapping if necessary for very small screens */
        flex-wrap: wrap; 
        justify-content: space-between; /* Keeps logo/lang switcher/hamburger spread out */
    }

    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 60px);
        background-color: var(--primary-grey);
        flex-direction: column;
        align-items: stretch;
        padding: 20px 0;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links li a {
        color: var(--white);
        padding: 15px 20px;
        display: block;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links .cta-nav-button {
        margin: 20px auto;
        width: 80%;
        display: block;
    }
    
    /* Typography */
    h1 {
        font-size: 2.2em;
    }
    
    h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    
    h3 {
        font-size: 1.4em;
    }
    
    /* Hero Section */
    #hero-section {
        min-height: 50vh;
    }
    
    #hero-section h1 {
        font-size: 2.2em;
    }
    
    #hero-section h2 {
        font-size: 1.2em;
    }
    
    /* Ensure all grid layouts stack on mobile */
    .features-grid,
    .services-grid,
    .services-overview-grid,
    .contact-methods-grid,
    .testimonials-grid {
        grid-template-columns: 1fr; /* Force single column layout on mobile */
    }

    /* About Section */
    .about-diana-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-diana-content .about-text {
        max-width: 100%;
        text-align: center;
    }
    
    .about-diana-content .about-image {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    /* Diana Story Section */
    .d-flex {
        flex-direction: column;
    }
    
    .diana-story-text {
        padding-left: 0;
        text-align: center;
        margin-top: 30px;
    }
    
    .diana-story-image {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    /* Office Info Section */
    #office-info {
        padding: 60px 0;
    }
    
    #office-info h2 {
        font-size: 2em;
        margin-bottom: 40px;
    }
    
    .office-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .office-address,
    .office-hours {
        padding: 30px;
        align-items: center;
        text-align: center;
    }
    
    .office-address h3,
    .office-hours h3 {
        text-align: center;
    }
    
    .office-address p,
    .office-hours ul li,
    .office-hours .appointment-text {
        text-align: center;
    }
    
    .office-address .text-link {
        align-self: center;
    }
    
    /* Contact Form */
    .contact-form {
        padding: 30px 20px;
    }
    
    /* Accordions */
    .accordion-header {
        padding: 15px 20px;
        font-size: 1.2em;
    }
    
    .accordion-header h3 {
        font-size: 1.1em;
    }
    
    /* Logo Strip */
    .logo-strip {
        gap: 20px;
    }
    
    .logo-strip img {
        max-height: 40px;
        max-width: 100px;
    }
}

/* ============================================= */
/* ============ LTR LANGUAGE SUPPORT =========== */
/* ============================================= */

html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}

html[dir="ltr"] .main-nav {
    flex-direction: row;
}

html[dir="ltr"] .nav-logo {
    margin-right: 20px;
    margin-left: 0;
}

html[dir="ltr"] .hamburger-menu {
    margin-left: 20px; /* Default for LTR */
    margin-right: 0;
}

html[dir="ltr"] .language-switcher {
    margin-right: 20px;
    margin-left: 0;
    order: 2;
}

/* Mobile specific LTR adjustments */
@media (max-width: 767px) {
    html[lang="ru"] .nav-logo {
        font-size: 1.1em; /* Smaller logo for Russian on mobile */
        max-width: 60%; /* Ensure space for hamburger */
        margin-left: 0; /* Reset margins */
        margin-right: auto; /* Push to the right in LTR mobile */
    }
    
    html[lang="ru"] .hamburger-menu {
        margin-left: 10px; /* Ensure visible */
        z-index: 1001;
        margin-right: 0; /* Reset margin */
    }
    
    html[lang="ru"] .language-switcher {
        margin-left: 5px; /* Tighten spacing */
        margin-right: 0; /* Reset margin */
    }
    
    html[dir="ltr"] .nav-links {
        left: -100%;
        right: auto;
    }
    
    html[dir="ltr"] .nav-links.active {
        left: 0;
        right: auto;
        box-shadow: 5px 0 15px rgba(0,0,0,0.2);
    }

    html[dir="ltr"] .nav-links .cta-nav-button {
        margin-right: auto;
        margin-left: auto;
    }
}

/* Adjust general text alignment for LTR content */
html[dir="ltr"] .testimonial-item .client-info {
    direction: ltr;
    text-align: right;
}

html[dir="ltr"] .about-diana-content {
    text-align: left;
}

html[dir="ltr"] .about-diana-content .about-text {
    padding-right: 0;
}

html[dir="ltr"] .diana-story-text {
    padding-right: 0;
    text-align: left;
}

html[dir="ltr"] #our-advantages .feature-item {
    text-align: left;
}

html[dir="ltr"] .accordion-header {
    text-align: left;
}

html[dir="ltr"] .accordion-content {
    text-align: left;
}

html[dir="ltr"] .accordion-content ul {
    padding-left: 20px;
    padding-right: 0;
}

html[dir="ltr"] .accordion-content ul li::before {
    left: 0;
    right: auto;
    margin-left: -20px;
    margin-right: 0;
}

html[dir="ltr"] .faq-header {
    text-align: left;
}

html[dir="ltr"] .faq-header::after {
    margin-left: 10px;
    margin-right: 0;
}

html[dir="ltr"] .contact-form {
    text-align: left;
}

html[dir="ltr"] .office-address,
html[dir="ltr"] .office-hours {
    text-align: left;
    align-items: flex-start;
}

html[dir="ltr"] .office-address h3,
html[dir="ltr"] .office-hours h3 {
    text-align: left;
}

html[dir="ltr"] .office-address p,
html[dir="ltr"] .office-hours ul li,
html[dir="ltr"] .office-hours .appointment-text {
    text-align: left;
}

html[dir="ltr"] .office-address .text-link {
    align-self: flex-start;
}

html[dir="ltr"] .office-address .text-link:hover {
    transform: translateX(5px);
}
/* --- LTR Adjustments for Russian (style.css) --- */
/* Add these rules at the end of your style.css or within the LTR adjustments section */

html[dir="ltr"] .main-nav .nav-links li a {
    font-size: 0.9em; /* זה משפיע על גודל הפונט */
    padding: 8px 10px; /* צמצם את הרווח הפנימי האופקי (10px במקום 12px) */
    margin: 0 3px; /* צמצם את הרווח החיצוני בין הקישורים (3px במקום 5px) */
    white-space: nowrap;
}

/* If the problem persists specifically on smaller desktop screens before hamburger activates, */
/* you might need a media query for LTR */
@media (max-width: 992px) {
    /* ... other mobile styles ... */

    /* LTR Specific Adjustments for Mobile (Russian) */
    html[dir="ltr"] .nav-logo {
        margin-right: 0;
        margin-left: 20px;
    }

    html[dir="ltr"] .hamburger-menu {
        margin-left: 20px;
        margin-right: 0;
    }

    html[dir="ltr"] .nav-links {
        left: auto;
        right: 0;
        transform: translateX(100%);
        top: 80px; /* ENSURE THIS IS PRESENT AND NOT OVERRIDDEN */
        bottom: auto; /* IMPORTANT: Ensure it's not sticking to the bottom */
    }

    html[dir="ltr"] .nav-links.active {
        transform: translateX(0);
    }

    html[dir="ltr"] .nav-links li a {
        text-align: center;
        font-size: 1.1em;
        padding: 12px 15px;
    }
