:root {
    --color-bg: #ffffff;
    --color-surface: #ffffff;
    --color-surface-soft: #eef3f8;
    --color-text: #17324d;
    --color-text-muted: #60758b;
    --color-primary: #0ab5c8;
    --color-primary-dark: #089eb0;
    --color-border: #d5dee8;
    --shadow-card: 0 20px 45px rgba(15, 56, 89, 0.08);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: 'Assistant', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    direction: rtl;
}

main {
    flex: 1;
}

fieldset{
    border: 0;
}

.container {
    width: min(100% - 48px, var(--container-width));
    margin: 0 auto;
}

/* ── Page content sections (scaffold placeholders) ────────── */
/* Reset & Fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Common Hebrew font similar to the image */
}


.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px 0;
}

.cookie-container {
    max-width: 1705px; /* Matches your site container */
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cookie-text {
    text-align: right;
    color: #373536;
    line-height: 1.4;
}

.cookie-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #373536;
}

.cookie-text p {
    font-size: 16px;
    margin: 0;
    font-weight: 300;
}

.privacy-link {
    color: #373536;
    text-decoration: underline;
    font-weight: 600;
}

/* --- The "Confirm" Button --- */
.btn-cookie-confirm {
    min-width: 105px;
    height: 40px;
    background: transparent;
    border: 1px solid #373536;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #202020;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-cookie-confirm:hover {
    background-color: #373536;
    color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .cookie-text { text-align: center; }
}


.sticky-service-trigger {
    position: fixed;
    bottom: calc(25vh + 100px + 10px); /* Positioned above the contact widget */
    left: 0;
    z-index: 999;
    direction: rtl;
}

.service-floating-btn {
    background-color: #F15A22; /* Brand Orange */
    color: #ffffff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    /* Custom Corner Radius to match JPG */
    border-radius: 0 25px 25px 0;
}


/* Icon Styling */
.service-floating-btn .trigger-icon {
    margin-bottom: 8px;
}

.service-floating-btn .trigger-icon img {
    width: 32px;
    height: auto;
}

/* Typography */
.service-floating-btn .trigger-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
    .sticky-service-trigger {
        left: 0;
        /* Stay above the contact widget: contact is at 25vh, 85px tall + 10px gap */
        bottom: calc(2.5vh + 85px + 10px);
    }
    .service-floating-btn {
        width: 85px;
        height: 85px;
        border-radius: 0 18px 18px 0;
    }
    .service-floating-btn .trigger-text {
        font-size: 13px;
    }
    .service-floating-btn .trigger-icon img {
        width: 26px;
    }
}


.sticky-contact-widget {
    position: fixed;
    left: 0; /* Floating on the left */
    z-index: 1000;
    display: flex;
    align-items: center;
    direction: rtl;
    border-radius: 40px;
    bottom: 25vh;
}

/* --- The Main Trigger (Left Side) --- */
.contact-trigger {
    background-color: #3B91B0; /* Primary Teal */
    color: #fff;
    border: none;
    padding: 15px 0px;
    border-radius: 0px 25px 25px 0px; /* Rounded only on the outer side */
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.1);
    transition: background 0.3s;
    min-width: 100px;
    width: 100px;
    height: 100px;
}

.trigger-icon img { width: 30px; margin-bottom: 5px; }
.trigger-text {font-size: 16px;font-weight: 700;line-height: 1.2;}

/* --- The Expandable Drawer --- */
.contact-drawer {
    display: flex;
    align-items: center;
    background-color: #F1F9FA; /* Faint light teal */
    border: 2px solid #3B91B0;
    border-radius: 0 35px 35px 0; /* Rounded on the inner side */
    padding: 0px 15px 0px 30px;
    margin-right: -2px; /* Slight overlap to merge borders */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: left center;
    position: relative;
    left: -25px;
    z-index: -1;
    height: 100px;
}

.drawer-actions {
    display: flex;
    align-items: center;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #373536;
    padding: 0 15px;
    transition: transform 0.2s;
}

.action-item:hover { transform: translateY(-3px); }

.action-icon {
    width: 36px;
    /* height: 36px; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.action-icon img {width: 36px;}
.action-item span {font-size: 14px;font-weight: 500;}

.divider {
    width: 1px;
    height: 60px;
    background-color: #3B91B080; /* Semi-transparent teal */
}

/* --- Close Button --- */
.close-drawer {
    background: #ffffff;
    border: 2px solid #3B91B0;
    color: #3B91B0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 15px;
    position: absolute;
    right: -30px;
}

/* State management */
.sticky-contact-widget.is-closed .contact-drawer {
    opacity: 0;
    transform: scaleX(0);
    pointer-events: none;
}

/* ── Contact Widget — Mobile ─────────────────────────────── */
@media (max-width: 768px) {
    .sticky-contact-widget {
    }
    .contact-trigger {
        width: 85px;
        height: 85px;
        min-width: 85px;
        border-radius: 0 18px 18px 0;
    }
    .contact-trigger .trigger-icon img {
        width: 26px;
    }
    .contact-trigger .trigger-text {
        font-size: 13px;
    }
    .contact-drawer {
        height: 85px;
        border-radius: 0 26px 26px 0;
        padding: 0 10px 0 20px;
    }
    .action-item {
        padding: 0 10px;
    }
    .action-icon img {
        width: 30px;
    }
    .action-item span {
        font-size: 12px;
    }
    .divider {
        height: 45px;
    }
}


.hero-section {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 325px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    direction: rtl;

    /* Rounded corners + overflow hidden to clip the image */
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}

/* 1. The Image Layer */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Keeps aspect ratio perfect */
    object-position: center;
    z-index: 1;
    /* Lowest layer */
}

/* 2. The Gradient Overlay Layer */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    z-index: 2;
    /* Sits on top of image */
}

/* 3. The Content Layer */
.hero-content {
    position: relative;
    z-index: 3;
    /* Sits on top of everything */
    max-width: 800px;
    padding: 20px;
}

.breadcrumb {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-title {
    font-size: clamp(28px, 5vw, 42px);
    /* Fluid typography */
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 18px;
    line-height: 1.4;
    /* Slightly increased for readability */
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 250px;
        /* Shorter height for mobile */
    }

    .hero-description {
        font-size: 16px;
    }
}

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



/* Sidebar Layout */
.sidebar-navigation {
    width: 280px;
    /* Standard sidebar width */
    direction: rtl;
}


/* Header with Lime Underline */
.sidebar-title {
    font-size: 24px;
    font-weight: 800;
    color: #373536;
    margin-bottom: 12px;
    padding-bottom: 15px;
    position: relative;
}

/* The Lime Accent Bar from JPG */
.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background-color: #A9B724;
    /* Exact Lime Green */
    border-radius: 2px;
}

/* Navigation List */
.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-link {
    text-decoration: none;
    color: #373536;
    font-size: 19px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

/* Hover & Active States */
.sidebar-link:hover {
    color: #3B91B0;
    /* Shifts to brand blue */
    transform: translateX(-5px);
    /* Gentle slide left in RTL */
}

.sidebar-link.active {
    color: #373536;
    font-weight: 700;
}

/* Mobile Tweak: Moves sidebar to top if screen is too small */
@media (max-width: 992px) {
    .sidebar-navigation {
        width: 100%;
        margin-bottom: 40px;
    }

    .sidebar-wrapper {
        position: static;
    }
}

.page-layout-wrapper {
    display: flex;
    width: 100%;
    max-width: 1920px;
    margin: 120px auto;
    gap: 100px;
    justify-content: flex-start;
    padding-inline: 100px;
}

/* Sidebar Navigation Container */
.sidebar-navigation {
    flex: 0 0 180px;
    /* Essential for the flex-wrapper we built */
    /* Subtle divider from JPG */
    padding-left: 20px;
    /* Space before the divider */
}

/* Header with Lime Underline */
.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #373536;
    margin: 0 0 15px 0;
    padding-bottom: 12px;
    position: relative;
    line-height: 1.2;
    border-bottom: 3px #A9B724 solid;
}

/* The Lime Accent Bar */
.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: #A9B724;
    border-radius: 2px;
    display: none;
}

/* Navigation List Logic */
.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
    /* Tighter gap matching your JPGs */
}

.sidebar-link {
    text-decoration: none;
    color: #373536;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding: 8px 0;
    position: relative;
}

/* Hover & Active Micro-Interactions */
.sidebar-link:hover {
    color: #3B91B0;
    padding-right: 5px;
    /* Gentle slide in RTL */
}

/* The "Active" state indicator */
.sidebar-link.active {
    /* color: #3B91B0; */
    /* font-weight: 800; */
}

/* Optional: Active indicator dot if you want more "Premium" feel */
.sidebar-link.active::before {
    /* content: ''; */
    /* position: absolute; */
    /* right: -15px; */
    /* width: 6px; */
    /* height: 6px; */
    /* background-color: #3B91B0; */
    /* border-radius: 50%; */
}

/* --- Mobile Breakpoint (Tablet & Phone) --- */
@media (max-width: 1024px) {
    .sidebar-navigation {
        flex: 1 1 100%;
        width: 100%;
        border-left: none;
        border-bottom: 1px solid #E6F0F4;
        padding-left: 0;
        padding-bottom: 15px;
        margin-bottom: 0;
    }

    .sidebar-wrapper {
        position: static;
    }

    .sidebar-list {
        flex-direction: row;
        /* Horizontal links on mobile */
        flex-wrap: wrap;
        gap: 0 20px;
    }
}

.forms-filter-bar {
    background-color: #358FAF;
    /* The exact teal blue from JPG */
    padding: 30px 20px;
    width: 100%;
    direction: rtl;
    max-width: 1170px;
    margin: 120px auto;
    border-radius: 8px;
}

.filter-container {
    max-width: 945px;
    /* Aligns with your previous grids */
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    gap: 35px;
}

.filter-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Flex growth based on JPG proportions */
.filter-main {
    flex: 2.5;
}

.filter-select {
    flex: 1.2;
}

.filter-action {
    flex: 0.5;
}

/* The Underlined Input Style */
.underlined-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ffffff;
    padding: 10px 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    width: 100%;
    outline: none;
}

.underlined-input::placeholder {
    color: #ffffff;
    opacity: 0.9;
}

/* Custom Select Arrow */
.custom-select {
    appearance: none;
    /* Removes default browser arrow */
    -webkit-appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    left: 0;
    bottom: 15px;
    width: 12px;
    height: 12px;
    pointer-events: none;
}

/* Creating the Yellow Chevron from JPG */
.select-arrow::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-left: 2px solid #F1AD13;
    /* Yellow/Orange arrow color */
    border-bottom: 2px solid #F1AD13;
    transform: rotate(-45deg);
}

/* Container Logic */
.custom-multi-select {
    position: relative;
    cursor: pointer;
}

.multi-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 45px;
}

/* Hidden Dropdown */
.multi-select-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: none;
    /* Hidden by default */
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    padding: 10px 0;
}

/* Show when active */
.custom-multi-select.is-open .multi-select-dropdown {
    display: block;
}

.custom-multi-select.is-open .select-arrow {
    transform: rotate(180deg);
    /* Flip arrow up when open */
}

/* Individual Checkbox Items */
.checkbox-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    transition: background 0.2s;
    color: #373536;
    /* Dark text for contrast against white bg */
    font-size: 16px;
    cursor: pointer;
    gap: 12px;
}

.checkbox-item:hover {
    background-color: #F5FAFF;
}

/* Custom Checkbox Style */
.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #358FAF;
    /* Brand blue checkbox */
    cursor: pointer;
}

.check-label {
    flex: 1;
    text-align: right;
}

/* The White Button */
.btn-search-white {
    background-color: #ffffff;
    color: #070F44;
    /* Dark navy text */
    border: none;
    padding: 10px 41px;
    border-radius: 20px;
    /* Fully rounded pill shape */
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    max-height: 45px;
}

.btn-search-white:hover {
    background-color: #f2f4f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .filter-container {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        background: #358FAF;
        border-radius: 8px;
        padding: 20px 16px;
    }

    .btn-search-white {
        width: 100%;
    }
}

/* ── Page Layout Responsive ───────────────────────────────── */
@media (max-width: 1400px) {
    .page-layout-wrapper {
        padding-inline: clamp(40px, 5vw, 100px);
        gap: clamp(50px, 6vw, 100px);
    }
}

@media (max-width: 1024px) {
    .page-layout-wrapper {
        flex-direction: column;
        margin: 60px auto;
        gap: 30px;
        padding-inline: clamp(20px, 4vw, 50px);
    }

    .forms-filter-bar {
        margin: 60px auto;
    }
}

@media (max-width: 768px) {
    .page-layout-wrapper {
        margin: 40px auto;
        padding-inline: 16px;
        flex-direction: column-reverse;
    }

    .forms-filter-bar {
        margin: 40px auto;
        padding: 20px 16px;
        background: transparent;
    }

    .hero-section {
        height: auto;
        min-height: 150px;
    }

    .hero-description {
        font-size: clamp(13px, 3.5vw, 16px);
    }

    .hero-content {
        padding: 16px;
    }

    .breadcrumb {
        font-size: clamp(11px, 3vw, 14px);
    }
}




/* Section Title Styling */
.info-card-section {
    /* Scales from 32px to 60px */
    padding: clamp(2rem, 5vw, 3.75rem) 0; 
    
    /* Scales from 60px to 120px */
    margin-bottom: clamp(3.75rem, 10vw, 7.5rem); 
}
.info-card-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #373536;
    margin-bottom: 50px;
    font-weight: 500;
}

.info-card-section .section-title span {
    font-weight: 700;
}

/* Info Card Container */
.info-card-section .info-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.5fr;
    background: #fff;
    border: 1px solid #E6F0F4;
    border-radius: 30px;
    overflow: hidden;
    max-width: 1300px;
    margin: 0 auto;
    direction: rtl;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Column Styling */
.info-card-section .info-col {
    padding: 40px 30px;
    border-left: 1px solid #E6F0F4;
    display: flex;
    flex-direction: column;
}

/* Typography & Grouping */
.info-card-section .info-group {
    margin-bottom: 20px;
    margin-inline: 30px;
}

.info-card-section .col-title {
    font-size: 20px;
    font-weight: 700;
    color: #373536;
    margin-bottom: 20px;
    line-height: 1.2;
    margin-inline: 30px;
}

.info-card-section .info-label {
    font-size: 20px;
    font-weight: 500;
    color: #373536; /* The brand light blue */
    margin-bottom: 4px;
}

.info-card-section .info-text {
    font-size: 15px;
    color: #373536;
    line-height: 1.5;
    margin: 0;
}

.info-card-section .info-value {
    font-size: 18px;
    font-weight: 400;
    color: #373536;
    margin: 0;
}

/* Icon Wrappers with specific backgrounds */
.info-card-section .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-inline: 30px;
}

.icon-orange { background-color: #FDF0E9; }
.icon-green  { background-color: #F2F5E3; }
.icon-blue   { background-color: #EBF4F8; }

/* Notice Box - Positioned at bottom of its column */
.notice-box {
    background: #FFF5F2;
    color: #F15A22;
    font-size: 13px;
    font-weight: 600;
    padding: 15px 30px;
    margin: auto -30px -40px -30px; /* Pulls to edges and bottom */
    text-align: center;
    line-height: 1.4;
}

.highlight-off {
    font-weight: 600;
}

/* Icon Header Badges */
.icon-header {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.blue-icon { background-color: #EBF4F8; }
.green-icon { background-color: #F2F5E3; }
.orange-icon { background-color: #FDF0E9; }

.icon-header img {
    width: 24px;
    height: auto;
}

/* Sidebar Footer & WhatsApp Button */
.sidebar-footer {
    /* margin-top: 30px; */
    /* display: flex; */
    /* flex-direction: column; */
    /* gap: 15px; */
}

.sidebar-footer .sidebar-icon-bg{
    margin-bottom: 0;
}

.mast-app, .whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mast-app {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-btn {
    background-color: #fff;
    color: #00558C;
}

.whatsapp-btn img {
    width: 24px;
    filter: none; /* Keep original color if it's the green WA icon */
}

/* Responsive Fix for smaller screens */
@media (max-width: 1400px) {
    .actions-grid {
        width: 100%;
        max-width: 100%;
        padding: 0 clamp(20px, 4vw, 60px);
        flex-wrap: wrap;
        justify-content: center;
        gap: clamp(20px, 3vw, 60px);
    }
}

@media (max-width: 1200px) {
    .info-card-section .info-card {
        grid-template-columns: 1fr 1fr;
    }
    .info-card-section .info-col:nth-child(2) {
        border-left: none;
    }
    .info-card-section .info-col {
        width: 100%;
    }
    .info-card-section .info-sidebar {
        grid-column: 1 / -1;
        width: 100%;
        border-radius: 0 0 30px 30px;
    }
}

@media (max-width: 1024px) {
    .info-card-section .actions-grid {
        gap: clamp(16px, 3vw, 40px);
        margin: 40px auto;
    }
    .info-card-section .icon-circle {
        width: clamp(80px, 14vw, 120px);
        height: clamp(80px, 14vw, 120px);
        border-radius: 25px;
    }
    .info-card-section .action-item {
        font-size: clamp(14px, 3.5vw, 18px);
    }
}

@media (max-width: 768px) {
    .info-card-section .info-card {
        grid-template-columns: 1fr;
    }
    .info-card-section .actions-title {
        font-size: clamp(22px, 6vw, 42px);
        padding: 0 16px;
    }
    .info-card-section .quick-actions {
        padding: 40px 0;
    }
    .info-card-section .actions-grid {
        gap: 20px;
        margin: 30px auto;
        padding: 0 16px;
    }
    .info-card-section .icon-circle {
        width: clamp(68px, 17vw, 100px);
        height: clamp(68px, 17vw, 100px);
        border-radius: 20px;
    }
    .info-card-section .cta-button-main {
        font-size: clamp(16px, 4vw, 20px);
        padding: 12px 24px;
    }
    .info-card-section .info-card-section {
        padding: 40px 0;
        margin-bottom: 60px;
    }
    .info-card-section .section-title {
        font-size: clamp(22px, 6vw, 42px);
        padding: 0 16px;
        margin-bottom: 30px;
    }
    .info-card-section .info-col {
        width: 100%;
        min-height: auto;
        border-left: none;
        border-bottom: 1px solid #E6F0F4;
    }
    .info-card-section .col-title {
        font-size: clamp(16px, 4.5vw, 20px);
        margin-inline: 16px;
    }
    .info-card-section .info-group {
        margin-inline: 16px;
    }
    .info-card-section .icon-wrapper {
        margin-inline: 16px;
    }
    .info-card-section .sidebar-main-grid {
        padding: 24px;
        gap: 20px;
    }
    .info-card-section .sidebar-label {
        font-size: clamp(16px, 4.5vw, 20px);
    }
    .info-card-section .sidebar-value {
        font-size: clamp(13px, 3.5vw, 16px);
    }
    .info-card-section .footer-action span {
        font-size: clamp(13px, 3.5vw, 16px);
    }
    .info-card-section .info-card {
        display: flex;
        flex-flow: column;
    }
}

@media (max-width: 480px) {
    .actions-grid {
        gap: 14px;
    }
    .icon-circle {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }
    .action-item {
        font-size: 13px;
    }
    .sidebar-main-grid {
        grid-template-columns: 1fr;
    }
    .info-sidebar {
        border-radius: 0 0 24px 24px;
    }
}

/* --- Info Card Refinement --- */
.info-card-section .info-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.5fr;
    background: #fff;
    border: 1px solid #05538E;
    border-radius: 30px;
    overflow: hidden;
    max-width: 1705px;
    margin: 0 auto;
    direction: rtl;
    /* Entrance animation */
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
    transition: box-shadow 0.5s ease;
}

.info-card-section .info-card:hover {
    box-shadow: 0 20px 60px rgba(0, 51, 102, 0.05);
}

.info-card-section .info-col {
    padding: 30px 0 0;
    border-left: 1px solid #05538E;
    position: relative;
    transition: background 0.3s ease;
    width: 435px;
    min-height: 435px;
    /* background: red; */
    display: flex;
    justify-content: space-between;
}

/* Subtle highlight on specific columns */
.info-card-section .info-col:hover {
    background-color: #fcfdfe;
}

/* --- Notice Box Interaction --- */
.info-card-section .notice-box {
    background: #F15A220D;
    color: #F15A22;
    font-size: 16px;
    padding: 15px;
    margin: 20px 0px 0px 0px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-top: 1px solid transparent;
    text-align: start;
    padding: 0 30px;
    min-height: 75px;
    display: flex;
    align-items: center;
}

.info-card-section .notice-box:hover {
    background-color: #ffede8;
    border-top: 1px solid rgba(241, 90, 34, 0.1);
}


.info-card-section .info-sidebar {
    background-color: #00558C; /* Deep blue from image */
    color: #ffffff;
    width: 400px; /* Based on the image tag 400px */
    border-radius: 0; /* Matches the large rounded corners on the right */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* 1. Main Grid */
.sidebar-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 40px;
    gap: 35px; /* Vertical gap 35px, Horizontal 15px */
    flex-grow: 1;
}

.sidebar-item {
    text-align: start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sidebar-icon-bg {
    width: 50px;
    height: 50px;
    background-color: #FFFFFF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.sidebar-icon-bg img {
    /* width: 28px; */
    height: auto;
}

.sidebar-label {
    font-size: 20px;
    font-weight: 700;
}

.sidebar-value {
    font-size: 16px;
    font-weight: 400;
}

/* 2. Footer Section */
.sidebar-footer {
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.05); /* Slight dark tint for the footer area */
    flex-flow: row;
    gap: 0;
}

.footer-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 30px 15px 0;
    gap: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Vertical divider between the two buttons */
.footer-action--app {
    border-inline-start: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-action span {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-align: right;
}

.footer-action img {
    width: 44px; /* Size of the MAST and WhatsApp circles */
    height: 44px;
    object-fit: contain;
}

.footer-action:hover {
    background-color: rgba(255, 255, 255, 0.1);
}


/* ── Info Card Section ───────────────────────────────────── */
@media (max-width: 1200px) {
    .info-card-section {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .info-card-section {
        padding: 40px 16px;
        margin-bottom: 50px;
    }
    .info-card-section .section-title {
        font-size: clamp(20px, 6vw, 34px);
        padding: 0;
        margin-bottom: 20px;
    }
    /* Single-column layout */
    .info-card {
        grid-template-columns: 1fr !important;
        margin-inline: 0;
        border-radius: 16px;
    }
    /* Sidebar: full width, rounded at top on mobile */
    .info-sidebar {
        width: 100% !important;
        border-radius: 16px 16px 0 0 !important;
        order: -1;
    }
    /* Info columns: full width, horizontal divider instead of vertical */
    .info-col {
        width: 100% !important;
        border-left: none !important;
        border-bottom: 1px solid #E6F0F4;
        flex-direction: column;
    }
    .info-col:last-child {
        border-bottom: none;
    }
    /* Sidebar grid stays 2-col on mobile */
    .sidebar-main-grid {
        grid-template-columns: 1fr 1fr;
        padding: 24px;
        gap: 20px;
    }
    /* Sidebar footer — stack vertically */
    .sidebar-footer {
        /*flex-direction: column;*/
    }
    .footer-action--app {
        border-inline-start: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    .info-card {
        display: flex;
        flex-flow: column;
        margin-inline: 10px;
        border-radius: 0;
    }
    .info-sidebar {
        border-radius: 0;
    }
    .footer-action {
        padding: 15px 15px 15px 0;
    }
    .sidebar-main-grid {
        padding: 40px 20px;
    }
    .info-card-section .notice-box {
        padding-inline-end: 80px;
    }
    .info-card-section .info-col {
        min-height: 1px;
    }

}

.project-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Image Container */
.project-card .card-image-wrapper {
    position: relative;
    width: 100%;
    height: 365px;
    border-radius: 12px;
    overflow: hidden;
}

.project-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badge (Top-Right) */
.project-card .status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.8);
    color: #1a4d80; /* Adjust blue to match design */
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}

/* Overlapping Content Box */
.project-card .card-content {
    background: #ffffff;
    margin: -104px auto 0 auto; /* Pulls the card up over the image */
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 2;
    text-align: right;
    width: 542px;
    border-bottom: 2px #358FAF solid;
    max-width: 100%;
}

.project-card .card-title {
    font-size: 20px;
    color: #373536;
    margin-bottom: -1px;
    font-weight: 700;
}

.project-card .card-excerpt {
    /*font-size: 18px;*/
    /*font-weight: 400;*/
    /*line-height: 1.6;*/
    color: #373536;
    margin-bottom: 7px;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
}

/* Read More Link */
/* --- Read More Component --- */
.project-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    /* This variable will be defined by the parent theme class */
    color: var(--accent-color, #358FAF);
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-direction: row; /* RTL logic: Text right, Icon left */
}

.project-card .arrow-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent, #358FAF1A); /* Light pastel version */
    transition: all 0.3s ease;
}

/* --- SVG Arrow Styling --- */
.project-card .arrow-circle svg path {
    fill: var(--accent-color);
    transition: fill 0.3s ease;
}

/* --- Hover State --- */
.project-card .read-more:hover .arrow-circle {
    background: var(--accent-color);
    transform: translateX(-5px); /* Nudge into the page */
}

.project-card .read-more:hover .arrow-circle svg path {
    fill: #ffffff; /* Arrow turns white on solid background */
}

/* Blue Theme (Default) */
.theme--blue {
    --accent-color: #05538E;
    --bg-accent: rgba(5, 83, 142, 0.1);
}

/* Lime Theme */
.theme--lime {
    --accent-color: #A9B724;
    --bg-accent: rgba(169, 183, 36, 0.1);
}

/* Orange Theme */
.theme--orange {
    --accent-color: #F15A22;
    --bg-accent: rgba(241, 90, 34, 0.1);
}

/* Teal Theme */
.theme--teal {
    --accent-color: #72CAC9;
    --bg-accent: rgba(114, 202, 201, 0.15);
}

/* --- Entrance Keyframes --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ticker-bar {
    background-color: #72CAC9; /* Exact Teal from JPG */
    height: 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
    direction: rtl;
    width: 1920px;
    max-width: 100%;
    margin: 0 auto;
}

.ticker-container {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 80px;
    flex-direction: row-reverse;
}

/* --- Pause Button --- */
.ticker-pause-btn {
    background: #373536; /* Dark slate/blue from JPG */
    color: #fff;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: 15px;
    transition: opacity 0.3s;
}

.ticker-pause-btn svg {
    width: 12px;
    height: 12px;
}

/* --- Ticker Content & Animation --- */
.ticker-content {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 30px;
    animation: ticker-scroll 30s linear infinite;
}

/* Pause animation on hover */
.ticker-content:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* --- Typography & Links --- */
.ticker-item {
    font-size: 16px;
    color: #373536;
    font-weight: 400;
    display: flex;
    gap: 10px;
}

.ticker-item a {
    color: #373536;
    text-decoration: underline;
    font-weight: 600;
}

.ticker-date {
    font-weight: 800;
}

.urgent-label {
    font-weight: 800;
    padding-right: 10px;
}

/* Vertical Dividers */
.ticker-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(55, 53, 54, 0.3);
    flex-shrink: 0;
    margin: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .ticker-bar { height: auto; padding: 10px 0; }
}


/* Container: High-end floating look */
.quick-service-float-box {
    width: 270px;
    background: #ffffff;
    border-radius: 35px; /* Extra rounded as per latest UI trends */
    padding: 50px 10px;
    border: 1px solid #f0f4f7;
    margin: 40px auto;
    box-shadow: 0px 0px 20px rgba(17, 138, 199, 0.15);
    backdrop-filter: blur(2px);
}

/* Grid Layout */
.quick-service-float-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 20px; /* Generous vertical spacing for clarity */
}

.quick-service-box {
    width: 400px; /* Specific width from design */
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #E6F0F4;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    min-height: 575px;
    margin: 40px 100px;
}

/* Header Section */
.service-header {
    padding: 20px 10px;
    text-align: center;
    border-bottom: 1px solid #72CAC9; /* Teal separator */
}

.service-subtitle {
    display: block;
    font-size: 20px;
    color: #373536;
    font-weight: 600;
}

.service-main-title {
    font-size: 34px;
    font-weight: 700;
    color: #373536;
    margin: 0;
    line-height: 1;
}

/* Grid Layout */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 0px;
    padding: 30px 15px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-3px);
}

/* Icon Containers */
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: box-shadow 0.3s ease;
}

.service-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1); /* Keeps icons white */
}

.service-label {
    font-size: 15px;
    font-weight: 700;
    color: #373536;
    text-align: center;
    line-height: 1.2;
}

/* Color Palette */
.service-item .icon-orange     { background-color: #F15A22; }
.service-item .icon-dark-blue  { background-color: #05538E; }
.service-item .icon-lime       { background-color: #A9B724; }
.service-item .icon-teal       { background-color: #72CAC9; }
.service-item .icon-blue       { background-color: #3B91B0; }
.service-item .icon-yellow     { background-color: #F1AD13; }
.service-item .icon-teal-dark  { background-color: #2D8B9D; }

.service-item:hover .service-icon {
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* ── Hero — Mobile ───────────────────────────────────────── */
@media (max-width: 768px) {
    .service-header {
        padding: 16px 10px;
    }
    .service-main-title {
        font-size: 24px;
    }
    .service-grid {
        gap: 12px 0;
        padding: 16px 10px 20px;
    }
    .service-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }
    .service-label {
        font-size: 13px;
    }
}


/* ── Sticky Service Widget (mirrors contact widget pattern) ── */
.sticky-service-widget {
    position: fixed;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    direction: rtl;
    bottom: 38vh;
}

.service-trigger {
    background-color: #F15A22;
    color: #fff;
    border: none;
    padding: 15px 0;
    border-radius: 0 25px 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.1);
    transition: background 0.3s;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

/* ── Service Drawer ── */
.service-drawer {
    display: flex;
    align-items: center;
     /* Faint warm tint to match orange brand */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: left center;
    position: relative;
    left: 120px;
    z-index: -1;
    width: 270px;
    background: #ffffff;
    border-radius: 35px;
    padding: 50px 10px;
    border: 1px solid #f0f4f7;
    margin: 40px auto;
    box-shadow: 0px 0px 20px rgba(17, 138, 199, 0.15);
    backdrop-filter: blur(2px);
    justify-content: center;
    position: absolute;
}

.service-drawer-inner {
}

/* Grid inside drawer — 2 columns, compact */
.service-drawer .quick-service-float-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
    width: 220px;
}

/* Close button — matches contact widget style but orange */
.close-service-drawer {
    background: #ffffff;
    border: 2px solid #F15A22;
    color: #F15A22;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    right: -30px;
    flex-shrink: 0;
    align-self: flex-start;
    top: 50%;
    transform: translateY(-50%);
}

.close-service-drawer svg {
    width: 14px;
    height: 14px;
}

/* ── Closed state ── */
.sticky-service-widget.is-closed .service-drawer {
    opacity: 0;
    transform: scaleX(0);
    pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .sticky-service-widget {
    }
    .service-trigger {
        width: 85px;
        height: 85px;
        border-radius: 0 18px 18px 0;
        font-size: 13px;
    }
    .service-trigger .trigger-text {
        font-size: 13px;
    }
    .service-trigger .trigger-icon img {
        width: 26px;
    }
    .service-drawer .quick-service-float-box-grid {
        width: 180px;
        gap: 15px 8px;
    }
}

/* ── Remove old standalone sticky-service-trigger if still present ── */
.sticky-service-trigger { display: none; }