:root {
    --orange: #f28c28;
    --orange-dark: #d96f0b;
    --yellow: #ffc857;

    --cream: #fff8ed;

    --dark: #252525;
    --gray: #666666;

    --white: #ffffff;

    --border: #eadfce;
}


* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;

    background: var(--cream);

    color: var(--dark);

    line-height: 1.6;
}


/* =========================================
   HEADER
========================================= */

.navbar {

    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 8px 7%;

    background: var(--white);

    border-bottom: 1px solid var(--border);

    position: sticky;

    top: 0;

    z-index: 100;
}


/* LEFT SIDE */

.header-left {

    display: flex;

    align-items: center;

    gap: 45px;
}


/* BRAND */

.brand {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    flex-shrink: 0;
    
}


.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 31px;

    font-weight: 800;

    line-height: 1;

    height: 45px;
}


.logo-image {

    width: 72px;

    height: 70px;

    object-fit: contain;

    display: block;

    flex-shrink: 0;
}


/* TAGLINE */

.tagline {
    margin-top: 0;

    margin-left: 83px;

    font-size: 14px;

    font-weight: 700;

    color: var(--orange);

    white-space: nowrap;

    line-height: 1;
}


/* NAVIGATION */

nav {

    display: flex;

    align-items: center;

    gap: 30px;
}


nav a {

    text-decoration: none;

    color: var(--dark);

    font-weight: 600;

    white-space: nowrap;

    transition: 0.2s;
}


nav a:hover {

    color: var(--orange-dark);
}


/* =========================
   ACTIVE NAVIGATION TAB
========================= */

/* Active regular navigation tab */

nav a.active {
    color: var(--orange);
}


/* Active Materials section */

.nav-dropdown.active .dropdown-toggle {
    color: var(--orange);
    font-weight: 700;
}


/* Keep active tab orange even while hovering */

nav a.active:hover {
    color: var(--orange);
}


.nav-dropdown.active:hover .dropdown-toggle {
    color: var(--orange);
}


/* =========================================
   ARABIC NAVIGATION FONT SIZE
========================================= */

html[lang="ar"] nav a,
html[lang="ar"] .dropdown-toggle,
html[lang="ar"] .sign-in-button {

    font-size: 17px;

}

/* LANGUAGE BUTTON */

.language-switch {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    background: transparent;

    border: none;

    color: var(--dark);

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    padding: 8px 0px;

    border-radius: 8px;

    transition: 0.2s;

    flex-shrink: 0;
}

/* =========================================================
   HEADER RIGHT — SIGN IN + LANGUAGE
========================================================= */

.header-right {


    display: flex;
    align-items: center;
    gap: 18px;

}

.header-right::after {
    content: "";
}


/* =========================================================
   SIGN IN BUTTON
========================================================= */

.sign-in-button {

    text-decoration: none;

    color:var(--dark);

    font-size: 15px;

    font-weight: 600;

    white-space: nowrap;

    cursor: pointer;

    transition: 0.2s ease;

}


.sign-in-button:hover {

     background: var(--cream);

    color: var(--orange-dark);

}


.header-separator {

    color:black;

    font-size: 18px;

    font-weight: 500;

}

.language-switch:hover {

    background: var(--cream);

    color: var(--orange-dark);
}


/* SMALL FLAGS */

.language-switch img {

    width: 40px;

    height: 30px;

    object-fit: fill;

    display: block;

    flex-shrink: 0;
}

/* =========================================
   PASSWORD SHOW / HIDE
========================================= */

.password-input-wrapper {

    position: relative;

    width: 100%;

}


.password-input-wrapper input {

    padding-right: 48px;

}


/* Arabic */

html[dir="rtl"] .password-input-wrapper input {

    padding-right: 14px;

    padding-left: 48px;

}


.password-toggle {

    position: absolute;

    top: 50%;

    right: 12px;

    transform: translateY(-50%);

    border: none;

    background: transparent;

    padding: 4px;

    font-size: 18px;

    line-height: 1;

    cursor: pointer;

    color: var(--gray);

    display: flex;

    align-items: center;

    justify-content: center;

}


.password-toggle:hover {

    color: var(--orange-dark);

}


/* Arabic eye position */

html[dir="rtl"] .password-toggle {

    right: auto;

    left: 12px;

}

.terms-link {

    color: var(--orange);

    font-weight: 700;

    text-decoration: none;

}


.terms-link:hover {

    color: var(--orange-dark);

    text-decoration: underline;

}

/* =========================================
   HERO
========================================= */

.hero {

    min-height: 650px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;

    padding: 80px 8%;

    background:
        linear-gradient(
            135deg,
            #fff8ed,
            #fff0d0
        );
}


.hero-content {

    max-width: 650px;
}


.eyebrow {

    color: var(--orange-dark);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 5px;

    margin-bottom: 15px;

    margin-left: 5px;


}


.hero h1 {

    font-size: clamp(45px, 6vw, 76px);

    line-height: 1.05;

    margin-bottom: 25px;
}


.hero h1 span {

    color: var(--orange);

    display: block;
}


.hero-description {

    font-size: 19px;

    color: var(--gray);

    max-width: 580px;

    margin-bottom: 35px;
}


/* =========================================
   BUTTON
========================================= */

.primary-button {

    display: inline-block;

    border: none;

    background: var(--orange);

    color: white;

    padding: 14px 26px;

    border-radius: 10px;

    font-size: 16px;

    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    transition: 0.2s;
}


.primary-button:hover {

    background: var(--orange-dark);

    transform: translateY(-2px);
}


/* =========================================
   HERO CARD
========================================= */

.hero-visual {

    width: 390px;
}


.construction-card {

    background: white;

    padding: 30px;

    border-radius: 20px;

    box-shadow:
        0 20px 60px rgba(80, 50, 10, 0.12);
}


.card-icon {

    font-size: 50px;

    margin-bottom: 15px;
}


.construction-card h3 {

    font-size: 22px;

    margin-bottom: 25px;
}


.estimate-row {

    display: flex;

    justify-content: space-between;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);

    gap: 20px;
}


.estimate-row span {

    color: var(--gray);
}


.estimate-row strong {

    text-align: right;
}


/* =========================================
   SECTIONS
========================================= */

.section {

    padding: 60px 8%;
}


.section-heading {

    max-width: 700px;

    margin-bottom: 45px;
}


.section-heading h2 {

    font-size: 42px;

    line-height: 1.15;

    margin-bottom: 15px;
}


.section-heading p:not(.eyebrow) {

    color: var(--gray);

    font-size: 17px;
}


/* =========================================
   CALCULATOR
========================================= */

.calculator-card {

    max-width: 800px;

    background: white;

    padding: 40px;

    border-radius: 20px;

    box-shadow:
        0 15px 50px rgba(80, 50, 10, 0.08);

    
}



.input-group {

    margin-bottom: 25px;
}


.input-group label {

    display: block;

    font-weight: 700;

    margin-bottom: 8px;
}


.input-group input,
.input-group select {

    width: 100%;

    padding: 14px 16px;

    border: 1px solid var(--border);

    border-radius: 10px;

    font-size: 16px;

    background: white;
}


.input-group input:focus,
.input-group select:focus {

    outline: 2px solid var(--yellow);

    border-color: var(--orange);
}


.calculate-button {

    width: 100%;
}


.result-box {

    margin-top: 30px;

    padding: 25px;

    border-radius: 12px;

    background: var(--cream);

    border: 1px solid var(--border);

    text-align: center;
}


/* =========================================
   MATERIAL PRICES
========================================= */

.light-section {

    background: white;
}


/*
   PRICE CARDS

   Keep all four cards on one horizontal row.
*/

.price-grid {

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;

    width: 100%;
}


.price-card {

    padding: 25px;

    border: 1px solid var(--border);

    border-radius: 15px;

    background: var(--cream);

    min-width: 0;
}


.price-card > span {

    display: block;

    color: var(--gray);

    margin-bottom: 10px;
}


.price-card strong {

    font-size: 20px;
    font-weight: 700;
}


.price-card small {
    display: block;
    margin-top: 8px;
    color: var(--gray);
    font-size: 12px;
}


/* =========================================
   ABOUT
========================================= */

.about-section {

    text-align: center;
}


.about-section .section-heading {

    margin-left: auto;

    margin-right: auto;
}


/* =========================================
   FOOTER
========================================= */

footer {

    padding: 40px 8%;

    background: #252525;

    color: white;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


footer p {

    color: #bbbbbb;
}


/* =========================================
   ARABIC / RTL
========================================= */

html[dir="rtl"] body {

    direction: rtl;

    font-family:
        Arial,
        Tahoma,
        sans-serif;
}


html[dir="rtl"] .brand {

    align-items: flex-start;
}


html[dir="rtl"] .tagline {

    margin-left: 83px;

    margin-right: 83px;

}


html[dir="rtl"] .hero-content {

    text-align: right;
}


html[dir="rtl"] .hero-description {

    text-align: right;
}


html[dir="rtl"] .section-heading {

    text-align: right;
}


html[dir="rtl"] .about-section {

    text-align: center;
}


html[dir="rtl"] .about-section .section-heading {

    text-align: center;
}


html[dir="rtl"] .estimate-row strong {

    text-align: left;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 850px) {

    .navbar {

        padding: 8px 5%;
    }


    .header-left {

        gap: 0;
    }


    nav {

        display: none;
    }


    .language-switch {

        margin-left: auto;
    }


    .hero {

        flex-direction: column;

        align-items: flex-start;

        padding-top: 60px;
    }


    .hero-visual {

        width: 100%;

        max-width: 450px;
    }

}


/* =========================================
   MOBILE SERVICE CARDS
========================================= */

@media (max-width: 850px) {

    .service-grid {
        grid-template-columns: 1fr;
    }

}


@media (min-width: 501px) and (max-width: 1000px) {

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 500px) {

    .hero h1 {

        font-size: 43px;
    }


    .section {

        padding: 70px 6%;
    }


    .calculator-card {

        padding: 25px;
    }


    footer {

        flex-direction: column;

        align-items: flex-start;
    }


    .tagline {

        font-size: 9px;

        margin-left: 48px;
    }

}


/*
   IMPORTANT:
   The price-grid is intentionally NOT changed
   inside the mobile media queries.

   This keeps all four price cards horizontal.
*/


/* =========================================
   SERVICE CARDS
========================================= */

.service-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    width: 100%;
}


.service-card {

    position: relative;

    display: flex;

    flex-direction: column;

    text-decoration: none;

    color: var(--dark);

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 32px;

    min-height: 300px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}


.service-card:hover {

    transform: translateY(-6px);

    border-color: var(--orange);

    box-shadow:
        0 15px 40px rgba(80, 50, 10, 0.10);
}


/* ICON */

.service-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff3df;

    border-radius: 14px;

    font-size: 27px;

    margin-bottom: 28px;

    flex-shrink: 0;
}


/* TITLE */

.service-card h3 {

    font-size: 23px;

    line-height: 1.25;

    margin: 0 0 14px 0;
}


/* DESCRIPTION */

.service-card p {

    color: var(--gray);

    font-size: 16px;

    line-height: 1.6;

    margin: 0;
}


/* ARROW */

.card-arrow {

    position: absolute;

    right: 28px;

    bottom: 22px;

    font-size: 28px;

    color: var(--orange);
}


/* Arabic / RTL */

html[dir="rtl"] .card-arrow {

    right: auto;

    left: 28px;
}


/* =========================================
   BRAND LINK
========================================= */

/* Make the entire Bulldozer brand clickable
   without changing its appearance */

a.brand-link {

    color: inherit !important;

    text-decoration: none !important;
}


a.brand-link:visited {

    color: inherit !important;

    text-decoration: none !important;
}


a.brand-link:hover {

    color: inherit !important;

    text-decoration: none !important;
}


a.brand-link:active {

    color: inherit !important;

    text-decoration: none !important;
}


a.brand-link .logo span {

    color: var(--dark) !important;

    text-decoration: none !important;
}


a.brand-link:hover .logo span {

    color: var(--dark) !important;

    text-decoration: none !important;
}


/* =========================
   MATERIALS DROPDOWN
========================= */

.nav-dropdown {

    position: relative;

    display: inline-block;
}


/* Materials label */

.dropdown-toggle {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    cursor: default;

    /* Make Materials bold like the other navigation tabs */

    font-weight: 700;
}


/* Materials hover */

.nav-dropdown:hover .dropdown-toggle {

    color: orange;
}


/* Arrow */

.dropdown-arrow {

    font-size: 0.75em;

    transition: transform 0.2s ease;
}


.nav-dropdown:hover .dropdown-arrow {

    transform: rotate(180deg);
}


/* Dropdown menu */

.dropdown-menu {

    position: absolute;

    top: 100%;

    left: 50%;

    transform:
        translateX(-50%)
        translateY(-5px);

    min-width: 210px;

    background: transparent;

    padding: 8px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 1000;

    text-align: center;
}


/* Show dropdown */

.nav-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


/* Individual dropdown options */

.dropdown-menu a {

    display: block;

    width: 100%;

    box-sizing: border-box;

    margin: 0;

    padding: 10px 14px;

    border-radius: 7px;

    text-decoration: none;

    white-space: nowrap;

    text-align: center;

    /* Normal state */

    background: white;

    color: black;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


/* Hover state */

.dropdown-menu a:hover {

    background: orange;

    color: white;
}


/* =========================
   BASIC NEEDS MATERIAL LIST
========================= */

.basic-material-card {

    width: 100%;

    max-width: 1000px;

    margin: 0 0 42px;

    padding: 0;

    background: transparent;

    border: none;

    box-shadow: none;

    border-radius: 0;
}


/* Material header */

.basic-material-header {

    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 10px;
}


/* Material icon */

.material-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff3e8;

    border-radius: 10px;

    font-size: 25px;
}


/* Text-based icons */

.material-symbol {

    font-size: 25px;

    color: var(--orange);

    font-weight: 700;
}


/* Numbers */

.material-number {

    display: block;

    margin-bottom: 3px;

    font-size: 1.25rem;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 1px;

    color: var(--orange);
}


/* Material title */

.basic-material-header h3 {

    margin: 0;

    font-size: 1.35rem;

    line-height: 1.3;

    color: var(--dark);
}


/* Description */

.material-description {

    margin-left: 64px;

    margin-bottom: 10px;

    max-width: 900px;

    line-height: 1.65;

    color: #555;
}


/* Bullet list */

.basic-material-card ul {

    margin: 0;

    padding-left: 87px;
}


.basic-material-card li {

    margin-bottom: 7px;

    line-height: 1.55;

    color: #333;
}


.basic-material-card li:last-child {

    margin-bottom: 0;
}


/* =========================
   LOCAL SELLERS CARD
========================= */

.basic-needs-sellers-card {

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    width: 100%;

    max-width: 420px;

    min-height: 0;

    box-sizing: border-box;

    margin: 45px 0 10px;

    padding: 26px 28px;

    text-decoration: none;

    color: var(--dark);

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 18px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}


.basic-needs-sellers-card:hover {

    transform: translateY(-5px);

    border-color: var(--orange);

    box-shadow:
        0 15px 40px rgba(80, 50, 10, 0.10);
}


/* Card title */

.basic-needs-sellers-card h3 {

    margin: 6px 0 7px;

    font-size: 1.35rem;

    color: var(--dark);
}


/* Card description */

.basic-needs-sellers-card p {

    margin: 0;

    max-width: 500px;

    line-height: 1.5;

    color: #666;
}


/* =========================
   RIGHT ARROW
========================= */

.sellers-card-arrow {

    align-self: flex-end;

    margin-top: 18px;

    color: var(--orange);

    font-size: 28px;

    line-height: 1;

    transition: none;
}

.price-unit {

    display: inline;

    font-size: 15px;

    font-weight: 700;

    color: var(--orange);

    margin: 0;
}

/* =========================
   MATERIAL PRICE CARDS - FORCE HORIZONTAL
========================= */

.price-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 20px !important;
    width: 100%;
    align-items: start;
}


.price-card {
    align-self: flex-start;
}

.price-grid .price-card {
    width: 105%;
    min-width: 0;
}

/* =========================================================
   SELLERS PAGE
========================================================= */


/* =========================
   SELLER FILTERS
========================== */

.seller-filters {

    width: 100%;
    max-width: 1100px;

    margin: 0 auto 55px;

    padding: 25px;

    display: grid;

    grid-template-columns:
        1.2fr
        1.2fr
        1fr
        1fr;

    gap: 20px;

    background: #ffffff;

    border-radius: 14px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-sizing: border-box;
}


.seller-filters .input-group {

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.seller-filters label {

    font-size: 14px;

    font-weight: 600;
}


.seller-filters select,
.seller-filters input {

    width: 100%;

    min-height: 46px;

    padding: 0 13px;

    border: 1px solid #d9d9d9;

    border-radius: 8px;

    background: #ffffff;

    font-family: inherit;

    font-size: 14px;

    box-sizing: border-box;

    outline: none;

    transition: border-color 0.2s ease,
                box-shadow 0.2s ease;
}


.seller-filters select:focus,
.seller-filters input:focus {

    border-color: #e89b00;

    box-shadow: 0 0 0 3px rgba(232, 155, 0, 0.12);
}


.seller-filters input::placeholder {

    color: #999;
}



/* =========================
   SELLERS RESULTS HEADER
========================== */

.sellers-results-header {

    max-width: 1100px;

    margin: 0 auto 25px;

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 20px;
}


.sellers-results-header .eyebrow {

    margin-bottom: 5px;
}


.sellers-results-header h3 {

    margin: 0;

    font-size: 28px;
}


.seller-count {

    font-size: 14px;

    color: #777;

    padding-bottom: 5px;
}



/* =========================
   SELLERS GRID
========================== */

.sellers-grid {

    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}



/* =========================
   SELLER CARD
========================== */

.seller-card {

    background: #ffffff;

    border-radius: 14px;

    overflow: hidden;

    border: 1px solid rgba(0, 0, 0, 0.06);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

}


.seller-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);

}



/* =========================
   SELLER IMAGE
========================== */

.seller-image {

    height: 150px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #f4f4f4;

    position: relative;
}


.seller-image span {

    width: 78px;

    height: 78px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e89b00;

    color: #ffffff;

    font-size: 23px;

    font-weight: 700;

    letter-spacing: 1px;
}



/* =========================
   SELLER CARD CONTENT
========================== */

.seller-card-content {

    padding: 20px;
}


.seller-card-content h3 {

    margin: 0 0 8px;

    font-size: 20px;

    line-height: 1.3;
}


.seller-location {

    margin: 0 0 15px;

    color: #777;

    font-size: 14px;

    display: flex;

    align-items: center;

    gap: 7px;
}


.location-icon {

    font-size: 10px;

    color: #e89b00;
}



/* =========================
   MATERIAL TAGS
========================== */

.seller-materials {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 18px;
}


.seller-materials span {

    padding: 5px 9px;

    border-radius: 6px;

    background: #f5f5f5;

    font-size: 12px;

    color: #555;
}



/* =========================
   SELLER PRICE
========================== */

.seller-price {

    margin: 0 0 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    font-size: 13px;

    color: #777;
}


.seller-price strong {

    font-size: 16px;

    color: #e89b00;
}



/* =========================
   SELLER BUTTON
========================== */

.seller-button {

    width: 100%;

    min-height: 42px;

    border: none;

    border-radius: 8px;

    background: #e89b00;

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.seller-button:hover {

    background: #d88f00;

    transform: translateY(-1px);
}



/* =========================
   NO RESULTS
========================== */

.no-sellers {

    max-width: 1100px;

    margin: 30px auto;

    padding: 45px 20px;

    text-align: center;

    background: #ffffff;

    border-radius: 14px;

    border: 1px solid rgba(0, 0, 0, 0.05);
}


.no-sellers h3 {

    margin: 0 0 8px;
}


.no-sellers p {

    margin: 0;

    color: #777;
}



/* =========================
   RESPONSIVE
========================== */

@media (max-width: 900px) {

    .seller-filters {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .sellers-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .seller-filters {

        grid-template-columns: 1fr;

        padding: 20px;

    }


    .sellers-results-header {

        align-items: flex-start;

        flex-direction: column;

        gap: 5px;

    }


    .sellers-grid {

        grid-template-columns: 1fr;

    }

}


/* =========================================================
   SELLER CONTACT DROPDOWN
========================================================= */

.seller-contact {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;

    display: flex;
    flex-direction: column;
    gap: 10px;

    font-size: 13px;

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        margin-top 0.35s ease,
        padding-top 0.35s ease;
}


/* OPEN STATE */

.seller-contact.open {
    max-height: 500px;
    opacity: 1;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eeeeee;
}


/* CONTACT TITLE */

.contact-title {
    font-size: 13px;
    font-weight: 700;
    color: #444;
    margin-bottom: 2px;
}


/* CONTACT ITEMS */

.seller-contact a,
.seller-contact div {
    color: #666;
    text-decoration: none;
    line-height: 1.5;
}


/* CONTACT LINKS */

.seller-contact a {
    transition: color 0.2s ease;
}


/* CONTACT LINK HOVER */

.seller-contact a:hover {
    color: #e89b00;
}


/* =========================================================
   ABOUT PAGE
========================================================= */

/* =========================
   ABOUT HERO
========================= */

.about-hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    background:
        linear-gradient(
            135deg,
            #fff8ed,
            #fff0d0
        );
}

.about-hero-content {
    max-width: 700px;
}

.about-hero h1 {
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1.05;
    margin-bottom: 25px;
}

.about-hero h1 span {
    display: block;
    color: var(--orange);
}

.about-hero-description {
    max-width: 650px;
    font-size: 19px;
    color: var(--gray);
    line-height: 1.7;
}

.about-hero-card {
    width: 360px;
    flex-shrink: 0;
    padding: 35px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(80, 50, 10, 0.12);
}

.about-hero-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: #fff3df;
    border-radius: 16px;
    font-size: 32px;
}

.about-hero-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.about-hero-card p {
    color: var(--gray);
    line-height: 1.6;
}


/* =========================
   ABOUT FEATURE GRID
========================= */

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    margin-top: 50px;
}

.about-feature-card {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow:
        0 15px 40px rgba(80, 50, 10, 0.10);
}

.about-feature-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: #fff3df;
    border-radius: 14px;
    font-size: 27px;
}

.about-feature-card h3 {
    margin-bottom: 12px;
    font-size: 21px;
}

.about-feature-card p {
    color: var(--gray);
    line-height: 1.65;
}


/* =========================
   HOW IT WORKS
========================= */

.about-steps {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 50px auto 0;
}

.about-step {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 25px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.about-step:first-child {
    border-top: 1px solid var(--border);
}

.about-step-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1.2;
}

.about-step h3 {
    font-size: 21px;
    margin-bottom: 8px;
}

.about-step p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}


/* =========================
   OUR APPROACH
========================= */

.about-approach {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 70px;
    align-items: center;
}

.about-approach-content {
    max-width: 700px;
}

.about-approach-content p:not(.eyebrow) {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 18px;
}

.about-approach-card {
    padding: 35px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow:
        0 15px 45px rgba(80, 50, 10, 0.08);
}

.about-approach-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: #fff3df;
    border-radius: 16px;
    font-size: 32px;
}

.about-approach-card h3 {
    font-size: 25px;
    margin-bottom: 12px;
}

.about-approach-card p {
    color: var(--gray);
    line-height: 1.6;
}


/* =========================
   IMPORTANT NOTE
========================= */

.about-note-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.about-note {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 25px 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff8ed;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.about-note-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    font-weight: 800;
    font-size: 18px;
}

.about-note h3 {
    margin-bottom: 7px;
    font-size: 18px;
}

.about-note p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}


/* =========================
   CALL TO ACTION
========================= */

.about-cta-section {
    background:
        linear-gradient(
            135deg,
            #fff0d0,
            #fff8ed
        );
}

.about-cta {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.about-cta .eyebrow {
    margin-left: 0;
}

.about-cta h2 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 15px;
}

.about-cta > p:not(.eyebrow) {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 30px;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.about-secondary-button {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 10px;
    border: 1px solid var(--orange);
    color: var(--orange-dark);
    background: white;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}

.about-secondary-button:hover {
    background: var(--orange);
    color: white;
}


/* =========================
   RTL
========================= */

html[dir="rtl"] .about-hero-content {
    text-align: right;
}

html[dir="rtl"] .about-hero-card {
    text-align: right;
}

html[dir="rtl"] .about-approach-content {
    text-align: right;
}

html[dir="rtl"] .about-step {
    text-align: right;
}

html[dir="rtl"] .about-note {
    text-align: right;
}

html[dir="rtl"] .about-hero h1 span {
    display: block;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 850px) {

    .about-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 45px;
    }

    .about-hero-card {
        width: 100%;
        max-width: 500px;
    }

    .about-feature-grid {
        grid-template-columns: 1fr;
    }

    .about-approach {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

@media (max-width: 600px) {

    .about-hero {
        padding-top: 60px;
    }

    .about-hero h1 {
        font-size: 43px;
    }

    .about-hero-description {
        font-size: 17px;
    }

    .about-feature-card {
        padding: 25px;
    }

    .about-step {
        grid-template-columns: 60px 1fr;
        gap: 15px;
    }

    .about-step-number {
        font-size: 23px;
    }

    .about-note {
        padding: 20px;
        gap: 14px;
    }

    .about-cta h2 {
        font-size: 34px;
    }

    .about-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .about-cta-buttons a {
        width: 100%;
        text-align: center;
    }

}


/* =========================================================
   BRICKS CARD DETAILS
========================================================= */

.bricks-card {
    overflow: hidden;
}


.bricks-details-button {
    margin-top: 12px;

    border: none;

    background: none;

    padding: 0;

    font-family: inherit;

    font-size: 13px;

    font-weight: 600;

    color: #f28c28;

    cursor: pointer;

    transition: opacity 0.2s ease;
}


.bricks-details-button:hover {
    opacity: 0.75;
}


.bricks-details {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease;

    text-align: left;
}


.bricks-details.open {
    max-height: 1000px;

    opacity: 1;

    margin-top: 18px;
}


.brick-category {
    margin-top: 15px;

    padding-top: 12px;

    border-top: 1px solid #eeeeee;
}


.brick-category h4 {
    margin: 0 0 10px 0;

    font-size: 14px;

    font-weight: 700;
}


.brick-details-list {
    display: flex;

    flex-direction: column;

    gap: 8px;
}


.brick-detail-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        auto;

    gap: 10px;

    align-items: center;

    font-size: 12px;
}


.brick-name {
    min-width: 0;
}


.brick-size {
    white-space: nowrap;

    color: #666;
}


.brick-price {
    white-space: nowrap;

    font-weight: 600;
}

/* =========================================
   TERMS & PRIVACY POLICY
========================================= */

.about-legal-section {
    background: #ffffff;
}

.about-legal {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-legal h2 {
    margin-bottom: 14px;
}

.about-legal p:not(.eyebrow) {
    max-width: 650px;
    margin: 0 auto 24px;
    color: var(--gray);
    line-height: 1.7;
}

/* =========================================================
   PROFILE / ACCOUNT MENU
========================================================= */

.profile-container {

    position: relative;

    display: none;

}


/* =========================================================
   PROFILE BUTTON
========================================================= */

.profile-button {

    width: 42px;

    height: 42px;

    border: 1px solid var(--border);

    border-radius: 50%;

    background: var(--white);

    color: var(--dark);

    font-size: 22px;

    line-height: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: 0.2s ease;

}


.profile-button:hover {

    background: #fff0d0;

    border-color: var(--orange);

    transform: translateY(-1px);

}


/* =========================================================
   PROFILE DROPDOWN
========================================================= */

.profile-menu {

    position: absolute;

    top: calc(100% + 12px);

    right: 0;

    width: 200px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 12px;

    padding: 8px 0;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);

    z-index: 9999;

    display: none;

}


/* =========================================================
   OPEN PROFILE DROPDOWN
========================================================= */

.profile-menu.open {

    display: block;

}


/* =========================================================
   PROFILE WELCOME
========================================================= */

.profile-welcome {

    padding: 2px 18px 2px;

    font-size: 16px;

    font-weight: 700;

    color: var(--dark);

}


/* =========================================================
   PROFILE EMAIL
========================================================= */

.profile-email {

    padding: 0px 18px 9px;

    font-size: 12px;

    color: var(--gray);

    word-break: break-word;

}


/* =========================================================
   DIVIDER
========================================================= */

.profile-divider {

    height: 1px;

    background: rgb(165, 165, 165);

    margin: 5px 12px;

}


/* =========================================================
   PROFILE LINKS
========================================================= */

.profile-menu a {

    display: block;

    padding: 3px 18px;

    color: var(--dark);

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: 0.15s ease;

}


.profile-menu a:hover {

    background: #fff5e8;

    color: var(--orange-dark);

}


/* =========================================================
   SIGN OUT
========================================================= */

.profile-signout {

    width: 100%;

    border: none;

    background: transparent;

    padding: 7px 18px;

    text-align: left;

    color: #d93025;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    border-radius: 7px;

}


.profile-signout:hover {

    background: #fff1f1;

}


/* =========================================================
   RTL
========================================================= */

html[dir="rtl"] .profile-menu {

    right: auto;

    left: 0;

}


html[dir="rtl"] .profile-signout {

    text-align: right;

}


html[dir="rtl"] .profile-welcome,
html[dir="rtl"] .profile-email {

    text-align: right;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .profile-menu {

        right: -5px;

        width: 220px;

    }


    html[dir="rtl"] .profile-menu {

        right: auto;

        left: -5px;

    }

}

/* =========================================================
   BULLDOZER WEBSITE NOTIFICATION
========================================================= */

#bulldozer-notification {

    position: fixed;

    top: 90px;

    right: 25px;

    z-index: 10000;

    display: flex;

    align-items: center;

    gap: 11px;

    max-width: 380px;

    padding: 14px 18px;

    background: #ffffff;

    border: 1px solid #e6e6e6;

    border-left: 4px solid var(--orange);

    border-radius: 10px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);

    color: var(--dark);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;

    font-weight: 600;

    opacity: 0;

    transform:
        translateX(30px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;

}


#bulldozer-notification.show {

    opacity: 1;

    transform:
        translateX(0);

}


.bulldozer-notification-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 25px;

    height: 25px;

    border-radius: 50%;

    background: var(--orange);

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

}


.bulldozer-notification-message {

    line-height: 1.5;

}


html[dir="rtl"] #bulldozer-notification {

    right: auto;

    left: 25px;

    border-left: 1px solid #e6e6e6;

    border-right: 4px solid var(--orange);

    transform:
        translateX(-30px);

}


html[dir="rtl"] #bulldozer-notification.show {

    transform:
        translateX(0);

}


@media (max-width: 600px) {

    #bulldozer-notification {

        top: 80px;

        right: 15px;

        left: 15px;

        max-width: none;

    }


    html[dir="rtl"] #bulldozer-notification {

        right: 15px;

        left: 15px;

    }

}

.history-button {
    background: white;
    color: #333;
    border: 1px solid #ddd;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.history-button:hover {
    background: #f5f5f5;
}

/* =========================================
   FORGOT PASSWORD MODAL
========================================= */

.forgot-password-modal {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.45);

}


.forgot-password-box {

    position: relative;

    width: 100%;

    max-width: 430px;

    background: #ffffff;

    border-radius: 14px;

    padding: 32px;

    box-sizing: border-box;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.18);

    animation: forgotPasswordAppear 0.2s ease;

}


@keyframes forgotPasswordAppear {

    from {

        opacity: 0;

        transform: translateY(-10px) scale(0.98);

    }

    to {

        opacity: 1;

        transform: translateY(0) scale(1);

    }

}


.forgot-password-close {

    position: absolute;

    top: 12px;

    right: 14px;

    width: 32px;

    height: 32px;

    border: none;

    background: transparent;

    color: #777;

    font-size: 28px;

    line-height: 1;

    cursor: pointer;

}


.forgot-password-close:hover {

    color: #222;

}


html[dir="rtl"] .forgot-password-close {

    right: auto;

    left: 14px;

}


.forgot-password-heading {

    text-align: center;

    margin-bottom: 25px;

}


.forgot-password-icon {

    font-size: 34px;

    margin-bottom: 10px;

}


.forgot-password-heading h2 {

    margin: 0 0 10px 0;

    color: var(--dark);

    font-size: 24px;

}


.forgot-password-heading p {

    margin: 0;

    color: var(--gray);

    font-size: 14px;

    line-height: 1.6;

}


.forgot-password-field {

    margin-bottom: 16px;

}


.forgot-password-field label {

    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    font-weight: 700;

    color: var(--dark);

}


.forgot-password-field input {

    width: 100%;

    padding: 13px 14px;

    border: 1px solid #d9d9d9;

    border-radius: 8px;

    background: #ffffff;

    color: var(--dark);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    outline: none;

    box-sizing: border-box;

}


.forgot-password-field input:focus {

    border-color: var(--orange);

    box-shadow:
        0 0 0 3px rgba(242, 140, 40, 0.12);

}


.reset-password-message {

    margin-bottom: 16px;

    padding: 11px 13px;

    border-radius: 8px;

    font-size: 14px;

    line-height: 1.5;

}


.reset-password-message.error {

    background: #fff1f1;

    border: 1px solid #f2b8b8;

    color: #c62828;

}


.reset-password-message.success {

    background: #f0fff4;

    border: 1px solid #b7e4c7;

    color: #26734d;

}


html[lang="ar"] .forgot-password-heading h2 {

    font-size: 26px;

}


html[lang="ar"] .forgot-password-field label {

    font-size: 16px;

}


html[lang="ar"] .forgot-password-field input {

    font-size: 16px;

}


/* =========================================
   WHY BULLDOOZER
========================================= */

.why-section {

    background: #fffaf2;

}


.why-section .section-heading {

    max-width: 1200px;

    margin: 0 auto 45px;

}


.why-grid {

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

}


.why-card {

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 14px;

    padding: 28px 22px;

    text-align: center;

    box-shadow:
        0 6px 22px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

}


.why-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.08);

}


.why-icon {

    width: 58px;

    height: 58px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #fff1d9;

    font-size: 28px;

}


.why-card h3 {

    margin: 0 0 10px;

    color: var(--dark);

    font-size: 18px;

    line-height: 1.35;

}


.why-card p {

    margin: 0;

    color: var(--gray);

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================
   ARABIC
========================================= */

html[lang="ar"] .why-card h3 {

    font-size: 20px;

}


html[lang="ar"] .why-card p {

    font-size: 15px;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .why-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .why-grid {

        grid-template-columns: 1fr;

    }


    .why-card {

        padding: 25px 20px;

    }

}