/* Global Styles and Reset */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --light-blue: #dbeafe;
    --accent-color: #f59e0b;
    --light-color: #f9fafb;
    --dark-color: #111827;
    --gray-color: #6b7280;
    --border-color: #e5e7eb;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --header-height: 105px; /* גובה משוער של התפריט */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height); /* מרווח גלילה לחלקים באתר */
    font-size: 16px;
}

/* עוגנים לניווט מדויק */
.section-anchor {
    display: block;
    position: relative;
    visibility: hidden;
    top: -120px; /* מרווח מספיק גדול מעל העוגן */
    height: 0;
}

body {
    font-family: 'Assistant', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    direction: rtl;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--primary-color);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #152b63;
    transform: translateY(-2px);
}

.bg-light {
    background-color: var(--light-color);
}

/* Header */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.5rem 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1rem;
    color: white;
    font-size: 1.5rem;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo {
    display: flex;
    align-items: center;
}

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

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--dark-color);
    position: relative;
    transition: background-color 0.3s;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    transition: transform 0.3s;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.nav-links a {
    font-weight: 600;
    color: var(--dark-color);
    padding: 0.5rem;
    position: relative;
}

/* Header nav link underline animation - fixing direction */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0; /* Changed to right to animate from right to left */
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.btn-contact {
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 50px;
    padding: 0.75rem 1.5rem !important;
}

.btn-contact:hover {
    background-color: #152b63;
}

.btn-contact::after {
    display: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/office.png');
    background-size: cover;
    background-position: center top 25%; /* Adjusted to show less of the top and more middle */
    color: #fff;
    text-align: center;
    padding: 12rem 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Hero section - single line header */
.single-line-header {
    font-size: 2.8rem;
    white-space: nowrap;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Philosophy Section */
.philosophy-section {
    padding: 5rem 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.philosophy-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.philosophy-item:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.philosophy-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Financial Services */
.financial-services-section {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.image-placeholder {
    background-color: var(--light-blue);
    border-radius: 8px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.owner-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.owner-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top; /* Changed to show the top part of the image */
    display: block;
}

.about-text {
    flex: 2;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p,
.about-more-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #e0f2fe 50%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(30, 58, 138, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-top: 1rem;
    font-weight: 400;
}

.contact-container {
    position: relative;
    z-index: 1;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* First row - 3 cards */
.contact-card:nth-child(1) { grid-column: 1 / span 2; }
.contact-card:nth-child(2) { grid-column: 3 / span 2; }
.contact-card:nth-child(3) { grid-column: 5 / span 2; }

/* Second row - 2 cards centered */
.contact-card:nth-child(4) { grid-column: 2 / span 2; }
.contact-card:nth-child(5) { grid-column: 4 / span 2; }

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    margin-top: 0;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    justify-content: center;
    min-width: 200px;
    width: 100%;
    max-width: 280px;
    height: 60px;
    box-sizing: border-box;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button i {
    font-size: 1.3rem;
}

.contact-button span {
    font-size: 1rem;
    line-height: 1.3;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Specific sizing for different button types */
.phone-button span {
    font-size: 1.1rem;
    font-weight: 700;
}

.whatsapp-button span {
    font-size: 1.1rem;
    font-weight: 700;
}

.email-button span {
    font-size: 0.9rem;
    word-break: break-all;
    line-height: 1.2;
}

.facebook-button span {
    font-size: 1rem;
}

.location-button span {
    font-size: 0.85rem;
    line-height: 1.1;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
}

.phone-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.phone-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.email-button {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.email-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.location-button {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.location-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.whatsapp-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.facebook-button {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
    color: white;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.facebook-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

/* Accessibility Section */
.accessibility-section {
    padding: 4rem 0;
}

.accessibility-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.accessibility-content h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.3rem;
}

.accessibility-features {
    list-style-type: disc;
    padding-right: 1.5rem;
    margin: 1rem 0;
}

.accessibility-features li {
    margin-bottom: 0.5rem;
}

.footer-links {
    margin-top: 0.75rem;
}

.footer-links a {
    color: var(--light-blue);
    font-weight: 600;
    margin: 0 0.5rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Focus styles for keyboard navigation - accessibility improvement */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: none;
}

/* Only show focus styles when using keyboard navigation */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Remove focus styles for mouse users */
a:focus:not(:focus-visible), 
button:focus:not(:focus-visible), 
input:focus:not(:focus-visible), 
select:focus:not(:focus-visible), 
textarea:focus:not(:focus-visible) {
    outline: none;
}

/* Skip to main content - accessibility feature */
.skip-link {
    position: absolute;
    top: -999px;
    left: -999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: none;
}

.skip-link:focus {
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    overflow: visible;
}

/* For screen readers only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* High contrast colors for improved readability */
.high-contrast-mode {
    --primary-color: #0000CC;
    --secondary-color: #0066CC;
    --light-blue: #B3DAFF;
    --accent-color: #FF6600;
    --light-color: #FFFFFF;
    --dark-color: #000000;
    --gray-color: #333333;
}

/* Accessibility Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    width: 80%;
    max-width: 800px;
    max-height: 90vh;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-open {
    display: block;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    padding: 2rem;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

.modal-overlay.active {
    display: block;
}

.close-modal {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-color);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.close-modal:hover {
    background-color: var(--border-color);
}

/* Accessibility Widget Styles */
.accessibility-widget {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    direction: rtl;
}

.accessibility-widget-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s;
}

.accessibility-widget-toggle:hover,
.accessibility-widget-toggle:focus {
    background-color: #152b63;
    transform: scale(1.05);
}

/* Focus style - only shows with keyboard navigation, not mouse */
.accessibility-widget-toggle:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

.accessibility-widget-menu {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 260px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 0;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
}

.accessibility-widget[aria-expanded="true"] .accessibility-widget-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.accessibility-widget-header {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accessibility-widget-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.accessibility-widget-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--dark-color);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    transition: background-color 0.2s;
}

.accessibility-widget-close:hover,
.accessibility-widget-close:focus {
    background-color: var(--border-color);
}

.accessibility-widget-content {
    padding: 10px;
}

.accessibility-option {
    margin-bottom: 8px;
}

.accessibility-option button,
.accessibility-option a {
    width: 100%;
    text-align: right;
    padding: 10px;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 4px;
    color: var(--dark-color);
    transition: background-color 0.2s;
    font-family: 'Assistant', sans-serif;
    font-size: 1rem;
}

.accessibility-option button:hover,
.accessibility-option a:hover,
.accessibility-option button:focus,
.accessibility-option a:focus {
    background-color: var(--light-color);
}

.accessibility-option button i,
.accessibility-option a i {
    margin-left: 10px;
    font-size: 1.2rem;
    width: 25px;
    color: var(--primary-color);
}

.accessibility-option button.active {
    background-color: var(--light-blue);
    font-weight: 600;
}

.accessibility-statement-link {
    border-top: 1px solid var(--border-color);
    padding-top: 8px;
    margin-top: 8px;
}

/* Accessibility CSS classes to be applied by JavaScript */
body.a11y-font-larger {
    font-size: 120%;
}

body.a11y-font-largest {
    font-size: 150%;
}

body.a11y-font-smaller {
    font-size: 90%;
}

body.a11y-high-contrast {
    filter: contrast(1.5);
    background-color: black !important;
    color: white !important;
}

body.a11y-high-contrast *:not(img):not(.accessibility-widget-toggle) {
    background-color: black !important;
    color: white !important;
    border-color: white !important;
}

body.a11y-high-contrast a,
body.a11y-high-contrast button {
    color: yellow !important;
}

body.a11y-grayscale {
    filter: grayscale(100%);
}

body.a11y-links-underline a {
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

/* Mobile responsiveness for accessibility widget */
@media (max-width: 768px) {
    .accessibility-widget-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .accessibility-widget-menu {
        bottom: 60px;
        width: 240px;
    }
}

/* Travel Insurance Section */
.travel-insurance-section {
    padding: 5rem 0;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.7;
}

.travel-insurance-providers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.insurance-provider {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.insurance-provider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.provider-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.provider-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.provider-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-color);
    flex-grow: 1;
}

.provider-image-container {
    margin: 1.5rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 100%;
    overflow: hidden;
}

.provider-image-container img {
    max-height: 130px;
    max-width: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Specific adjustments for individual insurance provider images */
.provider-image-container img[src*="passpordcard"] {
    max-height: 150px;
    max-width: 320px;
}

.provider-image-container img[src*="harel_logo"] {
    max-height: 100px;
    max-width: 220px;
}

.provider-cta {
    margin-top: auto;
    padding-top: 1.5rem;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2563eb 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: none;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    display: block;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
    .travel-insurance-providers {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .insurance-provider {
        padding: 1.5rem;
    }
    
    .provider-image-container {        height: 140px;
        margin: 1rem auto;
    }
      .provider-image-container img {
        max-height: 100px;
        max-width: 200px;
    }
      /* Mobile specific adjustments for individual images */
    .provider-image-container img[src*="passpordcard"] {
        max-height: 110px;
        max-width: 240px;
    }
    
    .provider-image-container img[src*="harel_logo"] {
        max-height: 80px;
        max-width: 160px;
    }
}

@media (max-width: 768px) {
    .travel-insurance-providers {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .insurance-provider {
        padding: 1.5rem;
    }
    
    .provider-image-container {
        height: 100px;
        margin: 1rem auto;    }
    
    .provider-image-container img {
        max-height: 80px;
        max-width: 150px;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;        gap: 1.5rem;
        grid-template-columns: 1fr;
        max-width: 100%;
    }
      .contact-card {
        padding: 2rem;
    }
    
    .contact-card:nth-child(1),
    .contact-card:nth-child(2),
    .contact-card:nth-child(3),
    .contact-card:nth-child(4),
    .contact-card:nth-child(5) {
        grid-column: auto;
    }
    
      .contact-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-button {
        min-width: 180px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-button i {
        font-size: 1.2rem;
    }
    
    .contact-button span {
        font-size: 0.9rem;
    }
}

/* Footer */
.site-footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.site-footer p {
    line-height: 1.5;
}

.site-footer a {
    color: var(--light-blue);
    font-weight: 600;
    transition: var(--transition);
}

.site-footer a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .menu-toggle {
        display: block;
        z-index: 999;
    }
    
    .menu-toggle.active .hamburger {
        background-color: transparent;
    }
    
    .menu-toggle.active .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .menu-toggle.active .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        min-width: 100%;
    }    
    .contact-container {
        flex-direction: column;
    }      .contact-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-bottom: 3rem;
        max-width: 100%;
    }
    
    .contact-card:nth-child(1),
    .contact-card:nth-child(2),
    .contact-card:nth-child(3),    .contact-card:nth-child(1),
    .contact-card:nth-child(2),
    .contact-card:nth-child(3),
    .contact-card:nth-child(4),
    .contact-card:nth-child(5) {
        grid-column: auto;
    }
    
      .contact-card {
        padding: 2rem;
    }
    
    /* Responsive adjustments for single line header */
    .single-line-header {
        font-size: 2.4rem;
    }
      .logo img {
        height: 75px; /* Also increased from 60px to 75px */
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Responsive adjustments for single line header */
    .single-line-header {
        font-size: 2rem;
        white-space: normal; /* Allow wrapping on smaller screens */
    }
      .logo img {
        height: 65px; /* Also increased from 55px to 65px */
    }
    
    .owner-image img {
        height: 300px;
    }
    
    .modal {
        width: 95%;
        max-height: 80vh;
    }
    
    .modal-content {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .site-title {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
      .logo img {
        height: 60px; /* Also increased from 50px to 60px */
    }
}