:root {
    --dark: #0b1220;
    --dark-2: #111827;
    --gold: #c9973f;
    --gold-light: #f3d38b;
    --cream: #f8f3e8;
    --text: #1f2937;
    --muted: #64748b;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(15, 23, 42, .14);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    direction: rtl;
    font-family: Arial, sans-serif;
    background: var(--cream);
    color: var(--text);
}

a {
    text-decoration: none;
}

/* Navbar */
.site-navbar,
.navbar {
    background: rgba(11, 18, 32, .96) !important;
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: .35s ease;
    box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

.navbar.scrolled {
    background: rgba(11, 18, 32, .88) !important;
    backdrop-filter: blur(12px);
}

.navbar-brand {
    font-weight: 900;
    letter-spacing: .3px;
}

.navbar-brand-logo {
    display: block;
    height: 48px;
    width: auto;
    max-width: 56px;
    object-fit: contain;
}

@media (max-width: 575.98px) {
    .navbar-brand-logo {
        height: 40px;
        max-width: 48px;
    }
}

.nav-link {
    color: rgba(255,255,255,.82) !important;
    font-weight: 700;
    margin: 0 5px;
}

.nav-link:hover {
    color: var(--gold-light) !important;
}

.navbar-toggler {
    border-color: rgba(255,255,255,.35);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-dark .navbar-toggler-icon {
    transition: background-image .2s ease;
}

.navbar-dark .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M7 7L23 23M23 7L7 23'/%3e%3c/svg%3e");
}

/* Hero (דף הבית בלבד) */
.hero {
    min-height: auto;
    padding: 36px 0;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(11,18,32,.94), rgba(11,18,32,.58)),
        url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 40%, rgba(201,151,63,.22), transparent 35%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-inner {
    max-width: 820px;
}

.hero-label,
.section-heading span,
.small-title {
    display: inline-block;
    color: #3b2606;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    padding: 9px 18px;
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero .hero-label {
    margin-bottom: 10px;
    padding: 6px 14px;
    font-size: 13px;
}

.hero h1 {
    font-size: clamp(28px, 4.2vw, 48px);
    line-height: 1.12;
    font-weight: 900;
    margin-bottom: 12px;
}

.hero p {
    font-size: 17px;
    line-height: 1.65;
    max-width: 710px;
    color: #e5e7eb;
    margin-bottom: 18px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Buttons */
.btn-main,
.btn-outline,
.btn-light-custom,
.btn-outline-dark-custom {
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 900;
    display: inline-block;
    transition: .25s ease;
}

.btn-main {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #111827;
    box-shadow: 0 14px 28px rgba(201,151,63,.28);
}

.btn-main:hover {
    transform: translateY(-2px);
    color: #111827;
}

.btn-outline {
    border: 2px solid rgba(255,255,255,.75);
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #111827;
}

.btn-light-custom {
    background: #fff;
    color: #111827;
}

.btn-outline-dark-custom {
    border: 2px solid var(--dark);
    color: var(--dark);
}

/* Sections */
.section {
    padding: 96px 0;
}

.section-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 54px;
}

.section-heading h2,
.dark-section h2,
.calculator-card h2,
.contact-box h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    margin-bottom: 16px;
}

.section-heading p,
.dark-section p,
.calculator-card p,
.contact-box p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.85;
}

/* Cards */
.service-grid,
.process-grid,
.project-grid,
.testimonial-grid {
    display: grid;
    gap: 26px;
}

.service-grid,
.project-grid,
.testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
}

.process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.service-card,
.process-step,
.project-card,
.testimonial-card,
.project-content-card,
.sidebar-card,
.empty-box {
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(201,151,63,.18);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.service-card,
.process-step,
.testimonial-card,
.project-content-card,
.sidebar-card,
.empty-box {
    padding: 34px;
}

.service-card {
    transition: .25s ease;
}

.service-card:hover,
.project-card:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
}

.service-card .icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
}

.service-card h3,
.process-step h3,
.project-card h3 {
    font-size: 23px;
    font-weight: 900;
    margin-bottom: 14px;
}

.service-card p,
.process-step p,
.project-card p,
.testimonial-card p {
    color: var(--muted);
    line-height: 1.85;
}

/* Dark section */
.dark-section {
    background:
        radial-gradient(circle at 85% 20%, rgba(201,151,63,.18), transparent 30%),
        var(--dark);
    color: #fff;
}

.dark-section p {
    color: #d1d5db;
}

.split {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 54px;
    align-items: center;
}

.features-list {
    display: grid;
    gap: 16px;
}

.features-list div {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(243,211,139,.22);
    padding: 19px 24px;
    border-radius: 20px;
    font-weight: 800;
}

/* Process */
.process-step strong {
    color: var(--gold);
    font-size: 32px;
}

/* Projects */
.projects-preview {
    background: #fffaf0;
}

.project-card {
    padding: 0;
    overflow: hidden;
    transition: .25s ease;
}

.article-card .project-card-body p {
    margin-bottom: 0;
}

.project-image,
.project-img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    display: block;
    background:
        linear-gradient(rgba(0,0,0,.14), rgba(0,0,0,.14)),
        url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 24px;
}

.project-card-body,
.project-card h3,
.project-card p {
    padding-left: 26px;
    padding-right: 26px;
}

.project-card-body {
    padding-bottom: 28px;
}

.project-type {
    display: inline-block;
    background: #fff3cf;
    color: #8a5a0a;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 12px;
}

.project-location {
    color: var(--muted);
    margin-bottom: 10px;
}

.read-more {
    display: inline-block;
    margin-top: 12px;
    color: #9a6512;
    font-weight: 900;
}

/* Calculator + Contact */
.calculator-card,
.contact-box {
    background:
        radial-gradient(circle at 10% 20%, rgba(243,211,139,.18), transparent 30%),
        var(--dark);
    color: #fff;
    border-radius: 34px;
    padding: 48px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 44px;
    align-items: center;
    box-shadow: var(--shadow);
}

.calculator-card p,
.contact-box p {
    color: #d1d5db;
}

#renovationCalculator {
    display: grid;
    gap: 15px;
}

#renovationCalculator label {
    font-weight: 800;
}

#renovationCalculator input,
#renovationCalculator select {
    width: 100%;
    padding: 15px 17px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.18);
    outline: none;
}

#renovationCalculator button {
    border: none;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #111827;
    padding: 16px 24px;
    border-radius: 999px;
    font-weight: 900;
}

#calculatorResult {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.12);
    padding: 17px;
    border-radius: 18px;
    min-height: 58px;
}

/* Testimonials */
.testimonial-card p {
    font-size: 18px;
}

.testimonial-card strong {
    color: var(--dark);
}

.testimonial-doc-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.testimonial-doc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff1cf, #f5cf7f);
    color: #7a4c06;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: .8px;
    border: 1px solid rgba(201,151,63,.28);
}

.testimonial-doc-card h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    color: var(--dark);
}

.testimonial-doc-card p {
    margin: 0;
}

.testimonial-doc-actions {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Inner pages */
.page-hero {
    background:
        radial-gradient(circle at 80% 20%, rgba(201,151,63,.28), transparent 35%),
        radial-gradient(circle at 5% 60%, rgba(255,255,255,.12), transparent 55%),
        linear-gradient(180deg, #1f2937, #4b5563);
    color: #fff;
    padding: 105px 0;
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 900;
}

.page-hero p {
    font-size: 20px;
    color: #d1d5db;
}

/* דף אודות וכדומה — גובה באנד הרץ חצי מברירת המחדל */
.page-hero--compact {
    padding: 52px 0;
}

.page-hero--compact .hero-label {
    margin-bottom: 10px;
    padding: 6px 14px;
    font-size: 13px;
}

.page-hero--compact h1 {
    font-size: clamp(26px, 3.5vw, 38px);
    margin-bottom: 10px;
    line-height: 1.15;
}

.page-hero--compact p {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.5;
}

.empty-box {
    text-align: center;
}

/* Project single */
.project-single-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 34px;
    align-items: start;
}

.project-single-img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.project-content-card h2,
.sidebar-card h3 {
    font-weight: 900;
    margin-bottom: 18px;
}

.lead-text {
    font-size: 22px;
    color: #b45309;
    line-height: 1.85;
    font-weight: 900;
    border-right: 5px solid var(--gold);
    padding: 14px 18px;
    background: #fff7df;
    border-radius: 18px;
}

.project-description {
    color: #334155;
    line-height: 1.95;
    font-size: 18px;
}

.project-content-card .project-description h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--dark, #0f172a);
    margin: 2rem 0 0.85rem;
}

.project-content-card .project-description h3:first-of-type {
    margin-top: 0;
}

.about-quote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-right: 4px solid var(--gold);
    background: #fffbeb;
    border-radius: 16px;
    font-style: italic;
    font-weight: 600;
    color: #92400e;
}

.project-sidebar {
    position: sticky;
    top: 95px;
}

/* Gallery */
.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.project-gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    transition: .25s ease;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .12);
}

.project-gallery-grid img:hover {
    transform: scale(1.035);
}

/* Footer */
.site-footer,
footer {
    background: var(--dark) !important;
    color: #fff;
    padding: 28px 0;
}

.footer-dev-link {
    color: #60a5fa !important;
    text-decoration: underline;
    text-decoration-color: #3b82f6;
    text-underline-offset: 2px;
    font-weight: 700;
}

.floating-contact {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-contact-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
    transition: transform .2s ease, box-shadow .2s ease;
}

.floating-contact-icon {
    display: inline-flex;
    width: 26px;
    height: 26px;
}

.floating-contact-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.floating-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .3);
}

.floating-call {
    background: #2563eb;
}

.floating-whatsapp {
    background: #25d366;
}

.floating-email {
    background: #f59e0b;
}

/* Responsive */
@media (max-width: 992px) {
    .service-grid,
    .process-grid,
    .project-grid,
    .testimonial-grid,
    .split,
    .calculator-card,
    .contact-box,
    .project-single-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 110px 0;
    }

    .project-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .project-gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 68px 0;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 18px;
    }

    .calculator-card,
    .contact-box {
        padding: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-main,
    .btn-outline,
    .btn-light-custom {
        text-align: center;
    }

    .floating-contact-btn {
        width: 50px;
        height: 50px;
        font-size: 21px;
    }
}
/* Lead Forms */
.lead-form {
    display: grid !important;
    gap: 15px;
    width: 100%;
}

.lead-form input,
.lead-form textarea {
    display: block !important;
    width: 100%;
    padding: 15px 17px;
    border-radius: 16px;
    border: 1px solid #d1d5db;
    outline: none;
    background: #fff !important;
    color: #111827 !important;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.lead-form textarea {
    min-height: 130px;
    resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: #64748b;
}

.lead-form button {
    display: block;
    width: 100%;
    border: none;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #111827;
    padding: 16px 24px;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
}