
/* =========================================================
   ROOT / BRAND
   ========================================================= */

:root {
    --green: #356C4D;
    --green-dark: #274F3A;
    --green-deep: #1F4532;
    --green-light: #3B7854;

    --gold: #E2B94F;
    --gold-light: #F0C960;

    --ink: #1F2D26;
    --muted: #6B7D73;

    --line: #DCE8DF;
    --soft: #F2F7F4;
    --white: #FFFFFF;

    --shadow: 0 22px 70px rgba(31, 69, 50, 0.15);

    --container: min(1180px, calc(100% - 40px));
    --header-height: 90px;
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--white);
    color: var(--ink);

    font-family: Inter, Arial, sans-serif;
    line-height: 1.6;
}

body.rtl,
html[dir="rtl"] body {
    font-family: Cairo, Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: var(--container);
    margin-inline: auto;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--green);

    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";

    width: 30px;
    height: 2px;

    background: var(--green);
}

.rtl .eyebrow,
html[dir="rtl"] .eyebrow {
    letter-spacing: 0;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.05;
    letter-spacing: -0.035em;
}

h1 {
    max-width: 950px;
    font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4.2rem);
}

h3 {
    font-size: 1.35rem;
}

.lead {
    max-width: 700px;

    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;
    padding: 14px 20px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-weight: 800;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.btn-primary:hover {
    background: var(--green-light);
    border-color: var(--green-light);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--line);
}

.btn-light:hover {
    background: var(--soft);
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: #111A14;
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}


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

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: var(--header-height);

    z-index: 1000;

    background:
        url("../assets/images/header-bg.png")
        center / cover
        no-repeat;

    border-bottom: 1px solid rgba(226, 185, 79, 0.35);
}

main {
    padding-top: var(--header-height);
}


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

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: var(--container);
    height: var(--header-height);

    margin-inline: auto;
    gap: 30px;
}


/* =========================================================
   LOGO
   ========================================================= */

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img {
    width: 110px;
    height: auto;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 38px;
    margin-inline: auto;

    font-family: Inter, Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
}

.site-nav a {
    position: relative;

    color: var(--white);
    white-space: nowrap;

    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--gold);
}

.site-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;

    width: 100%;
    height: 2px;

    background: var(--gold);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}


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

.nav-actions {
    display: flex;
    align-items: center;

    gap: 24px;
    flex-shrink: 0;
}


/* =========================================================
   LANGUAGE SWITCH
   ========================================================= */

.lang-switch {
    display: flex;
    align-items: center;

    direction: ltr;
    gap: 0;
}

.lang-switch button {
    position: relative;

    padding: 0;
    border: 0;
    background: transparent;

    color: rgba(255, 255, 255, 0.72);

    font-family: Inter, Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;

    transition: color 0.2s ease;
}

.lang-switch button:first-child {
    padding-right: 14px;
}

.lang-switch button:last-child {
    padding-left: 14px;
}

.lang-switch button:first-child::after {
    content: "";

    position: absolute;
    right: 0;
    top: 50%;

    width: 1px;
    height: 18px;

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

    transform: translateY(-50%);
}

.lang-switch button:hover {
    color: var(--white);
}

.lang-switch button.active {
    color: var(--gold);
}


/* =========================================================
   REQUEST QUOTE BUTTON
   ========================================================= */

.nav-actions .btn,
.nav-actions .btn-gold {
    min-width: 200px;
    height: 50px;

    padding: 0 24px;

    border: 1px solid var(--gold);
    border-radius: 8px;

    background: var(--gold);
    color: #111A14;

    font-family: Inter, Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 800;

    box-shadow: none;

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

.nav-actions .btn:hover,
.nav-actions .btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);

    color: #111A14;

    transform: translateY(-2px);

    box-shadow: 0 8px 22px rgba(226, 185, 79, 0.18);
}


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

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;

    background: transparent;
    color: var(--white);

    font-size: 1.3rem;
}


/* =========================================================
   SPLIT
   ========================================================= */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;
    align-items: center;
}

.quote-panel {
    position: relative;

    padding: 48px;
    overflow: hidden;

    border-radius: 36px;

    background:
        linear-gradient(
            135deg,
            var(--green-dark),
            var(--green)
        );

    color: var(--white);
}

.quote-panel::after {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    right: -80px;
    bottom: -90px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.quote-panel p {
    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    gap: 40px;
}

.contact-list {
    display: grid;
    gap: 14px;

    margin-top: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;

    gap: 14px;
    padding: 18px 0;

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

.contact-item b {
    display: block;
}

.contact-item span {
    color: var(--muted);
    font-size: 0.9rem;
}

.quote-form {
    padding: 34px;

    border: 1px solid var(--line);
    border-radius: 30px;

    background: var(--white);
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.field {
    display: grid;
    gap: 7px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 800;
}

.field input,
.field textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid var(--line);
    border-radius: 14px;

    outline: none;

    background: #FBFCFC;
    color: var(--ink);
}

.field input:focus,
.field textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(53, 108, 77, 0.10);
}

.field textarea {
    min-height: 140px;
    resize: vertical;
}

.form-status {
    display: none;

    margin-top: 14px;
    padding: 12px 14px;

    border-radius: 12px;

    background: #EDF6F1;
    color: var(--green);

    font-size: 0.82rem;
}

.form-status.show {
    display: block;
}


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

.hero-actions {
    position: absolute;

    left: 5%;
    bottom: 11%;

    z-index: 7;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 12px;
    direction: ltr;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 200px;
    min-width: 200px;
    height: 52px;

    padding: 0 22px;

    border-radius: 999px;

    text-align: center;

    font-family: Inter, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 800;

    white-space: nowrap;
}

.hero-actions .btn-primary {
    background: var(--green);
    color: var(--white);
    border: 1px solid var(--green);
}

.hero-actions .btn-primary:hover {
    background: var(--green-light);
    border-color: var(--green-light);

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.hero-actions .btn-light {
    background: var(--white);
    color: var(--green-dark);
    border: 1px solid var(--white);
}

.hero-actions .btn-light:hover {
    background: var(--soft);
    border-color: var(--soft);

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(24px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-13px);
    }
}


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

.footer {
    position: relative;

    width: 100%;
    min-height: 260px;

    margin: 0;
    padding: 0;

    background:
        linear-gradient(
            rgba(7, 59, 43, 0.72),
            rgba(7, 59, 43, 0.72)
        ),
        url("../assets/images/footer-bg.png")
        center / cover
        no-repeat;

    color: var(--white);
    overflow: hidden;
}

.footer > .container {
    position: relative;
    z-index: 2;

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

    margin: 0 auto;
    padding: 42px 24px 22px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        minmax(180px, 1fr)
        minmax(300px, 2fr);

    gap: 40px;

    align-items: start;
}


/* =========================================================
   FOOTER LOGO / BRAND
   ========================================================= */

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    max-width: 520px;
}

.footer-brand a {
    display: inline-block;
}

.footer-brand img {
    width: 105px;
    height: auto;
}

.footer-brand p {
    max-width: 330px;

    margin: 18px 0 0;

    color: rgba(255, 255, 255, 0.55);

    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.2px;
}


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

.footer-links {
    display: grid;

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

    gap: 12px 40px;

    align-content: start;
}

.footer-column {
    display: flex;
    flex-direction: column;

    min-width: 105px;
}

.footer-column h2,
.footer-title {
    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.45);

    font-family: Inter, Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-column a,
.footer-links a {
    display: inline-block;

    width: fit-content;

    margin: 0 0 15px;

    color: rgba(255, 255, 255, 0.78);

    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;

    text-decoration: none;

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

.footer-column a:hover,
.footer-links a:hover {
    color: var(--gold);
    transform: translateX(3px);
}


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

.footer-bottom {
    grid-column: 1 / -1;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 24px;
    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.14);

    color: rgba(255, 255, 255, 0.45);

    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
}

.footer-copy,
.footer-quote {
    margin: 0;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.68rem;
    line-height: 1.5;
}

.footer-copy span {
    margin: 0 5px;
}

.footer-quote {
    color: rgba(255, 255, 255, 0.65);

    font-size: 0.68rem;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.2s ease;
}

.footer-quote:hover {
    color: var(--gold);
}


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

html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
    letter-spacing: 0;
}

html[dir="rtl"] .footer,
html[dir="rtl"] .footer-links,
html[dir="rtl"] .footer-bottom {
    direction: rtl;
}

html[dir="rtl"] .footer-column a:hover,
html[dir="rtl"] .footer-links a:hover {
    transform: translateX(-3px);
}

html[dir="rtl"] .hero-actions {
    left: 5%;
    right: auto;
    direction: ltr;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .nav-wrap {
        gap: 20px;
    }

    .brand img {
        width: 135px;
    }

    .site-nav {
        gap: 14px;
        font-size: 0.84rem;
    }

    .nav-actions {
        gap: 15px;
    }

    .nav-actions .btn,
    .nav-actions .btn-gold {
        display: none;
    }

    .hero-grid,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-copy {
        padding: 70px 0 20px;
    }

    .hero-visual {
        min-height: 520px;
    }
}


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

@media (max-width: 760px) {

    :root {
        --container: min(100% - 28px, 1180px);
        --header-height: 72px;
    }

    .site-header {
        height: var(--header-height);
    }

    main {
        padding-top: var(--header-height);
    }

    .nav-wrap {
        width: var(--container);
        height: var(--header-height);

        gap: 12px;
    }

    .brand img {
        width: 96px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav {
        display: none;

        position: absolute;

        top: calc(var(--header-height) + 6px);
        left: 14px;
        right: 14px;

        margin: 0;
        padding: 14px;

        flex-direction: column;
        align-items: stretch;

        gap: 4px;

        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;

        background: var(--green-dark);
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: 10px;
        color: var(--white);
        font-size: 0.9rem;
    }

    .site-nav a::after {
        display: none;
    }

    .nav-actions {
        margin-left: auto;
        gap: 10px;
    }

    html[dir="rtl"] .nav-actions {
        margin-left: 0;
        margin-right: auto;
    }

    .hero-copy {
        padding-top: 52px;
    }

    .hero-visual {
        min-height: 440px;
    }

    .hero-bottle {
        height: 420px;
    }

    .spec-pill {
        display: none;
    }

    .section {
        padding: 78px 0;
    }

    .section-head {
        display: block;
        margin-bottom: 34px;
    }

    .section-head .btn {
        margin-top: 20px;
    }

    .cards,
    .feature-strip {
        grid-template-columns: 1fr;
    }

    .feature {
        border-inline-start: 0 !important;
        border-top: 1px solid var(--line);
    }

    .feature:first-child {
        border-top: 0;
    }

    .quote-panel {
        padding: 32px;
    }

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

    .field.full {
        grid-column: auto;
    }

    /* Hero buttons */

    .hero-actions {
        left: 18px;
        bottom: 8%;

        align-items: flex-start;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 200px;
        min-width: 200px;
        height: 50px;

        font-size: 0.86rem;
    }

    /* Footer */

    .footer {
        min-height: 0;
    }

    .footer > .container {
        padding: 36px 20px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .footer-brand img {
        width: 105px;
    }

    .footer-brand p {
        width: 100%;
        max-width: 100%;

        margin-top: 14px;

        font-size: 11px;
        line-height: 1.6;

        text-align: center;
        overflow-wrap: break-word;
    }

    .footer-links {
        width: 100%;

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

        gap: 12px 24px;

        text-align: center;
    }

    .footer-column {
        width: 100%;
        min-width: 0;

        align-items: center;
        text-align: center;
    }

  .footer-column h2,
    .footer-title {
        margin-bottom: 16px;
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    .footer-column a,
    .footer-links a {
        display: block;

        margin-bottom: 13px;

        font-size: 11px;
        text-align: center;
    }

    .footer-column a:hover,
    .footer-links a:hover {
        transform: none;
    }

    .footer-bottom {
        grid-column: 1;

        width: 100%;

        justify-content: space-between;
        align-items: center;

        gap: 10px;

        margin-top: 24px;
        padding-top: 18px;

        font-size: 10px;
    }
}


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

@media (max-width: 480px) {

    .footer > .container {
        padding: 30px 16px 18px;
    }

    .brand img {
        width: 90px;
    }

    .footer-brand img {
        width: 100px;
    }

    .footer-brand p {
        font-size: 10px;
    }

    .footer-links {
        gap: 10px 18px;
    }

    .footer-column {
        min-width: 90px;
    }

        .footer-column h2,
        .footer-title {
            font-size: 9px;
        }
   

    .footer-column a,
    .footer-links a {
        font-size: 10px;
    }

    .footer-bottom {
        font-size: 9px;
    }

    .nav-wrap {
        gap: 8px;
    }

    .lang-switch button {
        font-size: 0.8rem;
    }
}