/* Import Hebrew Font */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;700;900&display=swap');

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

body {
    font-family: 'Heebo', sans-serif;
    /* The Dark Blue Background from the original image */
    background-color: #031230;
    color: #ffffff;
    line-height: 1.5;
    direction: rtl;
    overflow-x: hidden;
    /* Prevents scrollbar if decoration sticks out */
}

/* Layout */
.hero-section {
    position: relative;
    padding: 80px 40px;
    min-height: 100%;
    /* Full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    /* max-width: 1440px; */
    text-align: center;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;

}

.content-block {
    margin-bottom: 20px;
}

/* Typography */
h1,
h2 {
    font-weight: 900;
    /* Extra bold */
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 3rem;
    /* Large Title */
    letter-spacing: 0.5px;
    line-height: 100%;
}

.highlight {
    color: #4db8ff;
    /* The Light Blue highlight color */
}

p {
    font-size: 1.3rem;
    /* Readable text size */
    font-weight: 300;
    /* Light font weight */
    color: #fff;
    /* Light grey-blue text */
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- The Side Decoration (Gradient Dashes) --- */
.side-decoration {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    /* Centers the pattern vertically */
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Space between dashes */
    z-index: 1;
}

.dash {
    width: 25px;
    height: 65px;
    /* Create the slanted shape */
    transform: skewY(-40deg);
    border-radius: 2px;
    margin-right: -10px;
    /* Pulls it slightly off screen */
}

/* Exact Color Gradient Pattern */
.color-1 {
    background-color: #008ba3;
}

/* Dark Cyan */
.color-2 {
    background-color: #009688;
}

/* Teal */
.color-3 {
    background-color: #26a69a;
}

/* Light Teal */
.color-4 {
    background-color: #4caf50;
}

/* Green */
.color-5 {
    background-color: #8bc34a;
}

/* Light Green */
.color-6 {
    background-color: #cddc39;
}

/* Lime */

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {

    h1,
    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1.1rem;
        max-width: 100%;
    }

    /* Make decoration smaller on mobile */
    .side-decoration {
        opacity: 0.2;
        right: -10px;
    }
}


/* --- GAP Setting --- */
.section-gap {
    height: 100px;
    width: 100%;
    background-color: #031230;
}

/* --- Section 2 Layout --- */
.details-section {
    padding: 0 20px 80px 20px;
    background-color: #031230;
    color: #fff;
    direction: rtl;
}

.details-container {
    max-width: 1300px;
    /* Wider to fit everything nicely */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* Makes columns equal height */
    gap: 20px;
}

/* Column Widths based on screenshot */
.right-col {
    width: 35%;
}

.center-col {
    width: 25%;
    display: flex;
    justify-content: center;
}

.left-col {
    width: 35%;
}

/* --- The "Blue Pato" (Header Box) --- */
.blue-header-box {
    background-color: #6ecdf5;
    /* The exact Sky Blue from screenshot */
    color: #031230;
    /* Dark text */
    padding: 20px 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    /* Center text inside the box */
}

.blue-header-box h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
}

/* --- Typography --- */
.phase-title {
    font-size: 3rem;
    /* Very large title */
    font-weight: 900;
    margin-top: 40px;
    margin-bottom: 5px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
}

.phase-desc {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sub-title-highlight {
    font-size: 1.6rem;
    color: #6ecdf5;
    /* Matches the blue box */
    margin-bottom: 25px;
    font-weight: 700;
    margin-top: 0;
}

.sub-title-blue {
    color: #6ecdf5;
    font-size: 1.4rem;
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* --- Lists (Bullets) --- */
.styled-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.styled-list li {
    position: relative;
    padding-right: 25px;
    /* Space for bullet */
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.4;
    color: #e2e8f0;
}

/* Custom Colored Dots */
.styled-list li::before {
    content: "●";
    /* Round dot */
    position: absolute;
    right: 0;
    top: -2px;
    font-size: 1.2rem;
}

.blue-dots li::before {
    color: #00bfa5;
}

/* Teal/Blue dots */
.green-dots li::before {
    color: #a4d128;
}

/* Lime Green dots */

.styled-list strong {
    color: #fff;
    font-weight: 800;
}

/* --- Center Image (The Pill Shape) --- */
.pill-image-container {
    width: 100%;
    height: 100%;
    /* This creates the perfect vertical pill shape */
    border-radius: 50px;
    border: 12px solid #6ecdf5;
    /* Thick Blue Border */
    overflow: hidden;
    position: relative;
    /* Ensure it doesn't get too short */
    min-height: 600px;
}

.road-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Zooms image to fill the pill */
    display: block;
}

.spacer-small {
    height: 30px;
}

/* --- Responsive Mobile --- */
@media (max-width: 900px) {
    .details-container {
        flex-direction: column;
        /* Stack vertically */
    }

    .right-col,
    .center-col,
    .left-col {
        width: 100%;
    }

    .pill-image-container {
        border-radius: 20px;
        /* Less rounded on mobile */
        min-height: 300px;
    }

    /* --- Section 2 Layout --- */
    .details-section {
        padding: 0 20px;
    }

    .phase-title {
        margin-top: 2rem;
    }

    .final-section {
        padding: 20px 20px 0 20px;
    }

    /* Reorder: Blue Box (Right Col) -> Image -> Rest */
    .details-container {
        display: flex;
        flex-direction: column;
    }

    .right-col {
        order: 1;
    }

    .center-col {
        order: 2;
    }

    .left-col {
        order: 3;
    }
}

@media (min-width: 900px) {
    .blue-header-box {
        min-width: 600px;
    }
}


/* --- SECTION 3: FINAL SECTION STYLES --- */
.final-section {
    background-color: #031230;
    padding: 60px 20px 0 20px;
    position: relative;
    overflow: hidden;
    direction: rtl;
}

.final-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    /* align-items: flex-start; */
    gap: 40px;
    /* margin-bottom: 40px; */
}

/* --- Right Side (Text & Workers) --- */
.final-content-col {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.final-title {
    color: #6ecdf5;
    /* Light Blue */
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.final-list-text li {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #e2e8f0;
    line-height: 1.5;
}

/* Workers Image Layout */
.workers-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: flex-start;
    /* Aligns workers to the right side */
    padding-right: 20px;
}

.workers-img {
    height: auto;
    /* Adjust height to match your image */
    max-width: 100%;
    display: block;
}

/* --- Left Side (Map) --- */
.final-map-col {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.map-frame {
    width: 100%;
    max-width: 550px;
    border: 12px solid #00bfa5;
    /* Teal Border */
    border-radius: 30px;
    /* Rounded Corners */
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.map-img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Bottom Dashed Line Decoration --- */
.dashed-road-line {
    width: 100%;
    height: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
    /* Creates the blue dashes with spaces */
    background-image: linear-gradient(to right, #62c7fa 60%, transparent 40%);
    background-size: 60px 100%;
    /* Controls the length of dashes */
    opacity: 0.8;
}

/* --- Responsive (Mobile) --- */
@media (max-width: 900px) {
    .hero-section {
        padding: 40px 20px 20px;
    }
    .final-section{
        padding: 20px 15px;
    }
    .final-container {
        flex-direction: column-reverse;
        /* Map goes on TOP on mobile */
        gap: 30px;
        text-align: center;
    }
    .dashed-road-line {
        margin-top: 30px;
    margin-bottom: 10px;
    } 

    .final-content-col {
        align-items: center;
        /* Center text and workers */
    }

    .final-list-text {
        text-align: right;
        /* Keep list text aligned right for Hebrew */
    }

    .workers-wrapper {
        justify-content: center;
        padding-right: 0;
    }

    .final-title {
        font-size: 1.5rem;
    }
}

/* ========================================= */
/* SECTION 4: BROCHURE FOOTER CSS (Updated)  */
/* ========================================= */


/* === PART 2: Top Content === */
.top-content-section {
    padding: 20px 40px 0;
    text-align: center;
    color: #ffffff;
}

.text-container p {
    font-size: 16px;
    color: #cbd5e1;
    /* margin: 5px 0; */
    line-height: 1.5;
}

.text-container h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0;
    color: white;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    /* margin-top: 30px; */
    flex-wrap: wrap;
    padding: 10px 20px;
}

.logo-box img {
    height: 120px;
    width: auto;
    /* background: rgba(255,255,255,0.1); */
    border-radius: 5px;
}

/* === PART 3: Contact Strip === */
.contact-strip {
    background-color: #62c7fa;
    /* Light Blue */
    color: #050f26;
    text-align: center;
    padding: 25px 20px;
}

.contact-strip h2 {
    margin: 5px 0;
    font-size: 20px;
    font-weight: 800;
}

.small-text {
    font-size: 12px;
    margin-top: 10px;
    opacity: 0.8;
}

/* === PART 4: Info Bar === */
.info-bar {
    color: white;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 12px 0;
    flex-wrap: wrap;
    font-size: 14px;
    border-bottom: 2px solid #050f26;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    direction: ltr;
    font-size: 1.8rem;
}

.icon {
    color: #62c7fa;
    display: flex;
}

/* === PART 5: Visual Banner === */
.visual-banner {
    padding: 20px 20px 0 20px;
    background-color: #050f26;
    position: relative;
    overflow: hidden;
}

/* Road Image */
.road-image-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.road-sec-img {
    width: 100%;
    max-width: 700px;
    border: 12px solid #4ecdc4;
    /* Teal Border */
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
}

/* Icons Row */
.icons-row {
    display: flex;
    justify-content: flex-start;
    /* Right in RTL */
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 20px auto;
    padding-right: 10px;
}

.icon-sq {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: white;
    font-size: 14px;
}

.bg-green {
    background: #8cc63f;
}

.bg-teal {
    background: #00a99d;
}

.bg-blue {
    background: #29abe2;
}

/* Titles */
.big-title-area {
    text-align: center;
    margin-bottom: 30px;
}

.main-title {
    font-size: 150px;
    font-weight: 900;
    color: #62c7fa;
    margin: 0;
    line-height: 1;
}

.sub-title-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.sub-title {
    font-size: 100px;
    font-weight: 900;
    color: white;
    margin: 0;
}

.arrows {
    display: flex;
    gap: -5px;
    direction: ltr;
    display: none;

    /* position: absolute;
    bottom: -23px;
    left: 14rem; */
}

.big-title-area {
    /* position: relative; */
}

.ar {
    font-size: 120px;
    font-weight: 900;
    font-family: monospace;
}

.ar-green {
    color: #8cc63f;
}

.ar-teal {
    color: #00a99d;
}

.ar-blue {
    color: #29abe2;
}

/* Bottom Graphics */
.bottom-graphics {
    position: relative;
    height: 100px;
    max-width: 1300px;
    margin: 0 auto 40px;
}

.qr-area {
    position: absolute;
    left: 0;
    bottom: 10px;
    text-align: center;
    z-index: 10;
    background: #050f26;
    padding-right: 10px;
}

.qr-code {
    width: 100px;
    height: 100px;
    border: 2px solid white;
    background: white;
    padding: 2px;
}

.qr-area span {
    display: block;
    color: white;
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
}

/* Lines */
.lines-group {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 90px;
    /* Space for QR */
    height: 100%;
}

.ln {
    position: absolute;
    height: 6px;
    border-radius: 5px;
}

.ln-blue {
    width: 80%;
    background: #0071bc;
    bottom: 50px;
    left: 10%;
}

.ln-yellow {
    width: 30%;
    background: #ffc20e;
    bottom: 30px;
    left: 40%;
    height: 8px;
    z-index: 2;
}

.ln-cyan {
    width: 40%;
    background: #29abe2;
    bottom: 30px;
    left: 15%;
}

.ln-orange {
    width: 20%;
    background: #f7931e;
    bottom: 10px;
    left: 5%;
    height: 8px;
}

.ln-beige {
    width: 60%;
    background: #c69c6d;
    bottom: 10px;
    left: 30%;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .main-title,
    .sub-title {
        font-size: 39px;
    }

    .ar {
        font-size: 28px;
    }

    .road-sec-img {
        border-width: 6px;
        border-radius: 15px;
    }

    .info-bar {
        flex-direction: column;
        /* align-items: center; */
    }

    .info-bar {
        gap: 20px;
        margin: 0 15px;
    }

    .lines-group {
        display: none;
        /* Hide lines on small mobile */
    }

    .bottom-graphics {
        display: flex;
        justify-content: center;
        height: auto;
        padding-bottom: 20px;
    }

    .qr-area {
        position: static;
    }

    .logo-box img {
        height: 80px;
    }
}

@media (min-width: 1200px) {
  
    .arrows {
        display: block;
    }

    .logos-container {
        gap: 60px;
    }
}