/* =========================================================
   TABARAK SCAFFOLD SERVICES
   MAIN WEBSITE STYLESHEET
   Cairo + RTL/LTR + Responsive
========================================================= */

/* =========================================================
   GOOGLE FONT
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');


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

:root {
    --tabarak-navy: #000000;
    --tabarak-navy-2: #262626;
    --tabarak-blue: #FD312E;
    --tabarak-blue-dark: #A50034;
    --tabarak-light-blue: #FFF1F0;
    --tabarak-light: #F6F3EB;
    --tabarak-white: #FFFFFF;
    --tabarak-text: #262626;
    --tabarak-muted: #716F6A;
    --tabarak-border: #E6E1D6;
    --font-cairo: 'Cairo', sans-serif;
}
/* =========================================================
   GLOBAL RESET
========================================================= */

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

html {
    margin: 0;
    padding: 0;

    scroll-behavior: smooth;

    font-family: var(--font-cairo) !important;
}

body {
    margin: 0;
    padding: 0;

    background: #F6F3EB;

    color: var(--tabarak-text);

    font-family: var(--font-cairo) !important;

    font-size: 15px;

    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* FORCE CAIRO EVERYWHERE */

body *,
button,
input,
textarea,
select,
option,
a,
p,
span,
div,
h1,
h2,
h3,
h4,
h5,
h6,
label,
strong,
small,
.navbar,
.navbar *,
.btn,
.btn *,
.card,
.card * {
    font-family: var(--font-cairo) !important;
}


img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

button {
    font-family: var(--font-cairo) !important;
}

::selection {
    background: var(--tabarak-blue);
    color: var(--tabarak-navy);
}


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

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

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

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

html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: 100%;
}


/* =========================================================
   NAVBAR
========================================================= */

.site-header {
    position: relative;

    z-index: 9999;

    width: 100%;
}


/* ---------------------------------------------------------
   Navbar
--------------------------------------------------------- */

.main-navbar {
    position: absolute;

    top: 0;
    right: 0;
    left: 0;

    width: 100%;

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

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

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition:
        background .3s ease,
        box-shadow .3s ease;
}


/* ---------------------------------------------------------
   Inner
--------------------------------------------------------- */

.navbar-inner {
    min-height: 92px;

    display: flex;
    align-items: center;

    gap: 35px;
}


/* ---------------------------------------------------------
   Logo
--------------------------------------------------------- */

.navbar-brand {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;

    min-width: 190px;

    color: #ffffff !important;

    text-decoration: none;

    line-height: 1;
}

.navbar-brand img {
    display: block;

    width: auto;

    max-width: 180px;
    max-height: 62px;

    object-fit: contain;
}


/* Brand fallback */

.brand-text {
    display: flex;

    flex-direction: column;

    line-height: 1;
}

.brand-text strong {
    display: block;

    color: #ffffff;

    font-size: 22px;

    font-weight: 800;
}

.brand-text span {
    display: block;

    margin-top: 7px;

    color: var(--tabarak-blue);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* ---------------------------------------------------------
   Desktop Menu
--------------------------------------------------------- */

.navbar-menu {
    flex: 1;

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

    gap: 8px;
}

html[dir="rtl"] .navbar-menu {
    direction: rtl;
}

html[dir="ltr"] .navbar-menu {
    direction: ltr;
}


/* Nav link */

.navbar-menu .nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 92px;

    padding: 0 13px !important;

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

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        color .25s ease,
        transform .25s ease;
}


/* Underline */

.navbar-menu .nav-link::after {
    content: "";

    position: absolute;

    right: 13px;
    left: 13px;

    bottom: 20px;

    height: 2px;

    background: var(--tabarak-blue);

    transform: scaleX(0);

    transform-origin: center;

    transition: transform .25s ease;
}


/* Hover */

.navbar-menu .nav-link:hover,
.navbar-menu .nav-link.active {
    color: #ffffff !important;
}

.navbar-menu .nav-link:hover::after,
.navbar-menu .nav-link.active::after {
    transform: scaleX(1);
}


/* ---------------------------------------------------------
   Navbar Actions
--------------------------------------------------------- */

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

    gap: 20px;

    flex-shrink: 0;
}

html[dir="rtl"] .navbar-actions {
    direction: rtl;
}

html[dir="ltr"] .navbar-actions {
    direction: ltr;
}


/* ---------------------------------------------------------
   Language
--------------------------------------------------------- */

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

    gap: 7px;

    min-width: 55px;
    height: 40px;

    padding: 0 12px;

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

    border-radius: 5px;

    color: #ffffff !important;

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

    font-size: 11px;

    font-weight: 800;

    transition: .25s ease;
}

.language-switcher i {
    font-size: 14px;
}

.language-switcher:hover {
    background: var(--tabarak-blue);

    border-color: var(--tabarak-blue);

    color: var(--tabarak-navy) !important;
}


/* ---------------------------------------------------------
   Contact
--------------------------------------------------------- */

.navbar-contact {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    padding-inline-start: 20px;

    border-inline-start: 1px solid rgba(255, 255, 255, 0.18);

    text-decoration: none;
}

.navbar-contact span {
    color: rgba(255, 255, 255, 0.5);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;
}

.navbar-contact strong {
    margin-top: 3px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

    direction: ltr;

    white-space: nowrap;
}


/* ---------------------------------------------------------
   Mobile Toggle
--------------------------------------------------------- */

.mobile-menu-toggle {
    display: none;

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

    flex-direction: column;

    gap: 5px;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, .3);

    border-radius: 5px;

    background: rgba(255, 255, 255, .05);

    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    background: #ffffff;

    border-radius: 2px;

    transition: .25s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ---------------------------------------------------------
   Mobile Menu
--------------------------------------------------------- */

.mobile-menu {
    position: absolute;

    top: 92px;

    right: 0;
    left: 0;

    display: none;

    background: rgba(0, 0, 0, .98);

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

    box-shadow: 0 25px 50px rgba(0, 0, 0, .25);
}

.mobile-menu.open,
.mobile-menu.active {
    display: block;
}

.mobile-menu-inner {
    display: flex;

    flex-direction: column;

    padding: 18px 0 28px;
}

.mobile-menu-inner > a {
    display: flex;

    align-items: center;

    gap: 12px;

    min-height: 48px;

    padding: 0 12px;

    border-bottom: 1px solid rgba(255, 255, 255, .07);

    color: rgba(255, 255, 255, .85) !important;

    font-size: 14px;

    font-weight: 700;

    transition: .2s ease;
}

.mobile-menu-inner > a:hover,
.mobile-menu-inner > a.active {
    color: var(--tabarak-blue) !important;

    background: rgba(255, 255, 255, .04);
}

.mobile-menu-inner > a i {
    width: 22px;

    color: var(--tabarak-blue);

    font-size: 17px;
}

.mobile-language {
    margin-top: 8px;
}

/* =========================================================
   MOBILE RESPONSIVE NAVBAR
========================================================= */

@media (max-width: 991px) {

    /* Navbar */
    .navbar-inner {
        min-height: 78px;
    }

    /* Hide Desktop Navigation */
    .navbar-menu {
        display: none !important;
    }

    /* Hide Desktop Actions */
    .navbar-actions {
        display: none !important;
    }

    /* Show Mobile Toggle */
    .mobile-menu-toggle {
        display: flex !important;
        flex-shrink: 0;
    }

    /* Mobile Menu */
    .mobile-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;

        width: 100%;

        display: none;

        z-index: 9999;

        background: rgba(0, 0, 0, .98);

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

        box-shadow: 0 25px 50px rgba(0, 0, 0, .25);
    }

    .mobile-menu.open,
    .mobile-menu.active {
        display: block !important;
    }

    /* Mobile Menu Links */
    .mobile-menu-inner > a {
        display: flex !important;

        align-items: center;

        width: 100%;

        min-height: 52px;

        padding: 0 16px;

        text-decoration: none;

        color: rgba(255, 255, 255, .9) !important;
    }

    /* Language */
    .mobile-menu-inner > a.mobile-language {
        margin-top: 10px;

        min-height: 54px;

        border: 1px solid rgba(255, 255, 255, .1);

        border-radius: 6px;

        background: rgba(255, 255, 255, .05);

        color: #ffffff !important;
    }

    .mobile-language i:first-child {
        color: var(--tabarak-blue) !important;
    }

    .mobile-language-arrow {
        margin-left: auto;

        color: rgba(255, 255, 255, .5) !important;
    }

    /* Contact */
    .mobile-menu-contact {
        display: flex;

        flex-direction: column;

        gap: 8px;

        margin-top: 16px;

        padding: 12px 0 0;

        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .mobile-menu-contact a {
        display: flex;

        align-items: center;

        gap: 10px;

        min-height: 44px;

        padding: 0 16px;

        color: rgba(255, 255, 255, .8);

        text-decoration: none;

        font-size: 13px;
    }

    .mobile-menu-contact i {
        color: var(--tabarak-blue);

        font-size: 17px;
    }

}


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

@media (max-width: 575px) {
/* =========================================================
   GLOBAL RESPONSIVE FIX
   Prevent horizontal overflow on mobile
========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

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

img,
video,
iframe,
svg {
    max-width: 100%;
}

img,
video {
    height: auto;
}

.container,
.container-fluid {
    max-width: 100%;
}

/* Prevent long text / URLs from breaking layout */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Mobile safety */
@media (max-width: 991px) {

    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    section,
    header,
    footer,
    main,
    nav {
        max-width: 100%;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    [class*="col-"] {
        min-width: 0;
    }
}
    .navbar-inner {
        min-height: 70px;
    }

    .navbar-brand img {
        max-width: 150px;

        max-height: 48px;
    }

    .brand-text strong {
        font-size: 16px;
    }

    .brand-text span {
        font-size: 9px;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }

    .mobile-menu {
        top: 100%;
    }

    .mobile-menu-inner {
        padding: 12px 0 22px;
    }

    .mobile-menu-inner > a {
        min-height: 50px;

        font-size: 14px;
    }

}
/* Mobile contact */

.mobile-menu-contact {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    padding-top: 20px;
}

.mobile-menu-contact a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--tabarak-blue) !important;

    font-size: 12px;

    font-weight: 700;
}

.mobile-menu-contact i {
    font-size: 16px;
}


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

.section-padding {
    padding: 110px 0;
}

.section-heading {
    margin-bottom: 35px;
}

.section-kicker {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: var(--tabarak-blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.section-kicker::before {
    content: "";

    width: 35px;
    height: 2px;

    background: currentColor;
}

.section-title {
    margin: 0;

    color: var(--tabarak-navy);

    font-size: clamp(36px, 4vw, 58px);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1px;
}

.section-title span {
    color: var(--tabarak-blue);
}

.section-intro {
    max-width: 520px;

    margin: 0 0 35px auto;

    color: var(--tabarak-muted);

    font-size: 15px;

    line-height: 1.95;
}


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

.about-section {
    background: #ffffff;
}

.about-text {
    color: var(--tabarak-muted);

    font-size: 15px;

    line-height: 2;
}

.about-actions {
    margin-top: 35px;
}


/* Button */

.btn-dark-custom {
    display: inline-flex;

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

    gap: 10px;

    min-height: 54px;

    padding: 0 28px;

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

    border-radius: 4px;

    background: var(--tabarak-navy);

    color: #ffffff !important;

    font-size: 13px;

    font-weight: 700;

    transition: .3s ease;
}

.btn-dark-custom:hover {
    transform: translateY(-3px);

    background: var(--tabarak-blue);

    border-color: var(--tabarak-blue);

    color: var(--tabarak-navy) !important;
}


/* About image */

.about-visual {
    position: relative;

    min-height: 550px;

    padding: 0 30px 30px 0;
}

html[dir="rtl"] .about-visual {
    padding: 0 0 30px 30px;
}

.about-image-main {
    position: relative;

    width: 100%;
    height: 500px;

    overflow: hidden;

    background: var(--tabarak-navy);
}

.about-image-main img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}

.about-visual:hover .about-image-main img {
    transform: scale(1.04);
}


/* Floating card */

.about-floating-card {
    position: absolute;

    left: -10px;
    bottom: 0;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 15px;

    min-width: 230px;

    padding: 22px;

    background: #ffffff;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

html[dir="rtl"] .about-floating-card {
    right: -10px;
    left: auto;
}

.about-card-icon {
    display: flex;

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

    flex-shrink: 0;

    width: 52px;
    height: 52px;

    background: var(--tabarak-light-blue);

    color: var(--tabarak-navy);

    font-size: 23px;
}

.about-floating-card strong {
    display: block;

    color: var(--tabarak-navy);

    font-size: 14px;

    font-weight: 800;
}

.about-floating-card span {
    display: block;

    margin-top: 4px;

    color: var(--tabarak-muted);

    font-size: 11px;
}


/* Decoration */

.about-decoration {
    position: absolute;

    top: -25px;
    right: 0;

    width: 120px;
    height: 120px;

    border-top: 3px solid var(--tabarak-blue);

    border-right: 3px solid var(--tabarak-blue);
}

html[dir="rtl"] .about-decoration {
    right: auto;
    left: 0;

    border-right: 0;

    border-left: 3px solid var(--tabarak-blue);
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    position: relative;

    background:
        linear-gradient(
            135deg,
            var(--tabarak-navy),
            var(--tabarak-navy-2)
        );
}

.services-section .section-title {
    color: #ffffff;
}

.services-grid {
    position: relative;

    z-index: 2;
}

.service-card {
    height: 100%;

    overflow: hidden;

    background: #ffffff;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .2);
}

.service-image {
    position: relative;

    height: 230px;

    overflow: hidden;

    background: var(--tabarak-navy);
}

.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, .80),
            transparent 65%
        );
}

.service-image-placeholder {
    display: flex;

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

    width: 100%;
    height: 100%;

    color: var(--tabarak-blue);

    font-size: 60px;
}

.service-number {
    position: absolute;

    top: 18px;
    right: 18px;

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}

html[dir="rtl"] .service-number {
    right: auto;
    left: 18px;
}

.service-content {
    position: relative;

    padding: 30px;
}

.service-icon {
    position: relative;

    z-index: 3;

    display: flex;

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

    width: 52px;
    height: 52px;

    margin-top: -55px;
    margin-bottom: 22px;

    background: var(--tabarak-blue);

    color: var(--tabarak-navy);

    font-size: 22px;
}

.service-content h3 {
    margin: 0 0 13px;

    color: var(--tabarak-navy);

    font-size: 20px;

    font-weight: 800;

    line-height: 1.5;
}

.service-content p {
    min-height: 82px;

    margin: 0 0 25px;

    color: var(--tabarak-muted);

    font-size: 13px;

    line-height: 1.9;
}

.service-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--tabarak-navy) !important;

    font-size: 11px;

    font-weight: 800;

    transition: .3s ease;
}

.service-link:hover {
    color: var(--tabarak-blue) !important;
}


/* =========================================================
   VALUES
========================================================= */

.values-section {
    background: var(--tabarak-light);
}

.values-grid {
    overflow: hidden;

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

    border-left: 1px solid var(--tabarak-border);
}

.value-card {
    position: relative;

    min-height: 280px;

    padding: 45px 35px;

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

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

    background: #ffffff;

    transition:
        background .35s ease,
        transform .35s ease;
}

.value-card:hover {
    background: var(--tabarak-navy);

    transform: translateY(-5px);
}

.value-number {
    position: absolute;

    top: 25px;
    right: 30px;

    color: #E6E1D6;

    font-size: 12px;

    font-weight: 800;
}

html[dir="rtl"] .value-number {
    right: auto;
    left: 30px;
}

.value-icon {
    display: flex;

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

    width: 58px;
    height: 58px;

    margin-bottom: 28px;

    background: var(--tabarak-light-blue);

    color: var(--tabarak-navy);

    font-size: 24px;

    transition: .35s ease;
}

.value-card h3 {
    margin-bottom: 13px;

    color: var(--tabarak-navy);

    font-size: 20px;

    font-weight: 800;

    transition: .35s ease;
}

.value-card p {
    margin: 0;

    color: var(--tabarak-muted);

    font-size: 13px;

    line-height: 1.9;

    transition: .35s ease;
}

.value-card:hover .value-icon {
    background: var(--tabarak-blue);
}

.value-card:hover h3 {
    color: #ffffff;
}

.value-card:hover p {
    color: rgba(255, 255, 255, .7);
}


/* =========================================================
   PROJECTS
========================================================= */

.projects-section {
    background: #ffffff;
}

.projects-grid {
    display: grid;

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

    gap: 25px;
}

.project-card {
    grid-column: span 4;
}

.project-card:nth-child(1),
.project-card:nth-child(4) {
    grid-column: span 8;
}

.project-image {
    position: relative;

    display: block;

    height: 390px;

    overflow: hidden;

    background: var(--tabarak-navy);
}

.project-card:not(:nth-child(1)):not(:nth-child(4)) .project-image {
    height: 390px;
}

.project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.07);
}

.project-placeholder {
    display: flex;

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

    width: 100%;
    height: 100%;

    color: var(--tabarak-blue);

    font-size: 70px;
}

.project-overlay {
    position: absolute;

    inset: 0;

    display: flex;

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

    background: rgba(0, 0, 0, .65);

    opacity: 0;

    transition: .35s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-view {
    display: flex;

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

    width: 65px;
    height: 65px;

    border: 1px solid rgba(255, 255, 255, .6);

    color: #ffffff;

    font-size: 20px;
}

.project-content {
    padding: 22px 0 15px;
}

.project-category {
    display: block;

    margin-bottom: 8px;

    color: var(--tabarak-blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.project-content h3 {
    margin: 0 0 10px;

    color: var(--tabarak-navy);

    font-size: 21px;

    font-weight: 800;
}

.project-content h3 a {
    color: inherit !important;

    transition: .3s ease;
}

.project-content h3 a:hover {
    color: var(--tabarak-blue) !important;
}

.project-location {
    display: flex;

    align-items: center;

    gap: 7px;

    color: var(--tabarak-muted);

    font-size: 12px;
}


/* =========================================================
   COMMITMENT
========================================================= */

.commitment-section {
    position: relative;

    padding: 140px 0;

    overflow: hidden;

    background:
        url('../images/industrial-background.jpg')
        center / cover no-repeat;

    color: #ffffff;
}

.commitment-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .90);
}

.commitment-section > .container {
    position: relative;

    z-index: 2;
}

.commitment-title {
    margin: 25px 0 30px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 68px);

    line-height: 1.15;

    font-weight: 800;
}

.commitment-title span {
    color: var(--tabarak-blue);
}

.commitment-text {
    max-width: 850px;

    margin: auto;

    color: rgba(255, 255, 255, .7);

    font-size: 15px;

    line-height: 2;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 90px 0;

    background: var(--tabarak-light);
}

.cta-box {
    position: relative;

    display: flex;

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

    gap: 40px;

    padding: 60px;

    overflow: hidden;

    background: var(--tabarak-navy);
}

.cta-box::after {
    content: "";

    position: absolute;

    right: -80px;
    bottom: -120px;

    width: 300px;
    height: 300px;

    border: 70px solid rgba(253, 49, 46, .08);

    border-radius: 50%;
}

html[dir="rtl"] .cta-box::after {
    right: auto;
    left: -80px;
}

.cta-content {
    position: relative;

    z-index: 2;
}

.cta-content h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.15;

    font-weight: 800;
}

.cta-content h2 span {
    color: var(--tabarak-blue);
}

.cta-content p {
    max-width: 600px;

    margin: 0;

    color: rgba(255, 255, 255, .65);

    font-size: 14px;

    line-height: 1.9;
}

.cta-action {
    position: relative;

    z-index: 2;

    flex-shrink: 0;
}


/* =========================================================
   EMPTY
========================================================= */

.empty-content {
    padding: 50px;

    background: rgba(255, 255, 255, .05);

    color: rgba(255, 255, 255, .6);

    text-align: center;
}


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

.site-footer {
    background: #000000;

    color: #ffffff;
}

.footer-main {
    display: grid;

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

    gap: 60px;

    padding: 80px 0;
}

.footer-logo {
    display: inline-flex;

    margin-bottom: 25px;

    color: #ffffff !important;
}

.footer-logo img {
    max-width: 190px;
    max-height: 70px;

    object-fit: contain;
}

.footer-logo strong {
    color: #ffffff;

    font-size: 23px;

    font-weight: 800;
}

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

    margin: 0;

    color: rgba(255,255,255,.55);

    font-size: 13px;

    line-height: 2;
}

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-column h4 {
    margin: 0 0 25px;

    color: var(--tabarak-blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.footer-column > a {
    margin-bottom: 12px;

    color: rgba(255,255,255,.62) !important;

    font-size: 12px;

    transition: .25s ease;
}

.footer-column > a:hover {
    color: var(--tabarak-blue) !important;

    transform: translateX(4px);
}

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

.footer-contact > a {
    display: flex;

    align-items: center;

    gap: 10px;
}

.footer-contact i {
    color: var(--tabarak-blue);
}

.footer-address {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: rgba(255,255,255,.55);

    font-size: 12px;

    line-height: 1.8;
}

.footer-address i {
    margin-top: 4px;

    color: var(--tabarak-blue);
}

.footer-bottom {
    display: flex;

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

    gap: 20px;

    padding: 23px 0;

    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,.4);

    font-size: 10px;
}

.footer-tagline {
    color: rgba(255,255,255,.45);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}


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

html[dir="rtl"] .navbar-inner {
    direction: rtl;
}

html[dir="ltr"] .navbar-inner {
    direction: ltr;
}

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

html[dir="ltr"] .hero-content {
    text-align: left;
}

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

html[dir="ltr"] .section-header {
    text-align: left;
}

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

html[dir="ltr"] .btn {
    direction: ltr;
}


/* Lists */

html[dir="rtl"] ul,
html[dir="rtl"] ol {
    padding-right: 1.5rem;
    padding-left: 0;
}

html[dir="ltr"] ul,
html[dir="ltr"] ol {
    padding-left: 1.5rem;
    padding-right: 0;
}


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

@media (max-width: 1199px) {

    .navbar-inner {
        gap: 20px;
    }

    .navbar-brand {
        min-width: 160px;
    }

    .navbar-brand img {
        max-width: 155px;
    }

    .navbar-menu {
        gap: 0;
    }

    .navbar-menu .nav-link {
        padding: 0 9px !important;

        font-size: 11px;
    }

    .navbar-menu .nav-link::after {
        right: 9px;
        left: 9px;
    }

    .navbar-contact {
        display: none;
    }

    .project-card,
    .project-card:nth-child(1),
    .project-card:nth-child(4) {
        grid-column: span 6;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);

        gap: 45px;
    }
}


/* ---------------------------------------------------------
   Tablet
--------------------------------------------------------- */

@media (max-width: 991px) {

    .section-padding {
        padding: 80px 0;
    }

    .navbar-menu,
    .navbar-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .navbar-inner {
        min-height: 78px;
    }

    .mobile-menu {
        top: 78px;
    }

    .section-intro {
        margin-right: 0;
        margin-left: 0;
    }

    .about-visual {
        min-height: 480px;
    }

    .about-image-main {
        height: 450px;
    }

    .cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 45px;
    }
}


/* ---------------------------------------------------------
   Mobile
--------------------------------------------------------- */

@media (max-width: 767px) {

    .section-padding {
        padding: 65px 0;
    }

    .navbar-inner {
        min-height: 70px;
    }

    .mobile-menu {
        top: 70px;
    }

    .navbar-brand img {
        max-width: 145px;

        max-height: 50px;
    }

    .brand-text strong {
        font-size: 20px;
    }

    .brand-text span {
        font-size: 7px;
    }

    .about-visual {
        min-height: 400px;

        padding: 0 15px 20px 0;
    }

    html[dir="rtl"] .about-visual {
        padding: 0 0 20px 15px;
    }

    .about-image-main {
        height: 380px;
    }

    .about-floating-card {
        left: 0;
    }

    html[dir="rtl"] .about-floating-card {
        right: 0;
    }

    .projects-grid {
        display: block;
    }

    .project-card {
        margin-bottom: 35px;
    }

    .project-image,
    .project-card:not(:nth-child(1)):not(:nth-child(4)) .project-image {
        height: 330px;
    }

    .commitment-section {
        padding: 90px 0;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-box {
        padding: 35px 25px;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 60px 0;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }
}


/* ---------------------------------------------------------
   Small Mobile
--------------------------------------------------------- */

@media (max-width: 575px) {

    .section-title {
        font-size: 34px;
    }

    .section-kicker {
        font-size: 10px;
    }

    .service-content {
        padding: 25px;
    }

    .value-card {
        min-height: auto;

        padding: 35px 25px;
    }

    .cta-action,
    .cta-action .btn {
        width: 100%;
    }

    .mobile-menu-inner > a {
        font-size: 13px;
    }
}


/* ---------------------------------------------------------
   Very Small Screens
--------------------------------------------------------- */

@media (max-width: 420px) {

    .navbar-inner {
        min-height: 64px;
    }

    .mobile-menu {
        top: 64px;
    }

    .navbar-brand img {
        max-width: 125px;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .section-title {
        font-size: 31px;
    }

    .about-floating-card {
        min-width: 200px;

        padding: 16px;
    }

    .about-card-icon {
        width: 45px;
        height: 45px;
    }
}
/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;

    overflow: hidden;

    background: var(--tabarak-navy);
}


/* =========================================================
   SWIPER
========================================================= */

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-wrapper {
    height: 100%;
}

.hero-swiper .swiper-slide {
    height: 100%;
}


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

.hero-slide {
    position: relative;

    display: flex;
    align-items: center;

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

    overflow: hidden;

    background-color: var(--tabarak-navy);

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


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

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .94) 0%,
            rgba(0, 0, 0, .78) 38%,
            rgba(0, 0, 0, .42) 68%,
            rgba(0, 0, 0, .22) 100%
        );
}


/* RTL overlay */

html[dir="rtl"] .hero-overlay {
    background:
        linear-gradient(
            270deg,
            rgba(0, 0, 0, .94) 0%,
            rgba(0, 0, 0, .78) 38%,
            rgba(0, 0, 0, .42) 68%,
            rgba(0, 0, 0, .22) 100%
        );
}


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

.hero-slide .container {
    position: relative;

    z-index: 3;
}

.hero-content {
    position: relative;

    z-index: 4;

    width: 100%;

    max-width: 820px;

    padding-top: 80px;

    color: #ffffff;
}


/* =========================================================
   SUBTITLE
========================================================= */

.hero-subtitle {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: var(--tabarak-blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.hero-subtitle::before {
    content: "";

    display: block;

    width: 42px;
    height: 2px;

    background: var(--tabarak-blue);

    flex-shrink: 0;
}


/* RTL subtitle */

html[dir="rtl"] .hero-subtitle {
    flex-direction: row-reverse;
}


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

.hero-title {
    max-width: 850px;

    margin: 0 0 25px;

    color: #ffffff;

    font-size: clamp(42px, 5.8vw, 78px);

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1.5px;

    text-shadow: 0 4px 20px rgba(0, 0, 0, .18);
}


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

.hero-description {
    max-width: 680px;

    margin: 0 0 35px;

    color: rgba(255, 255, 255, .75);

    font-size: 16px;

    font-weight: 400;

    line-height: 2;
}


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

.hero-buttons {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* Primary button */

.btn-primary-custom {
    display: inline-flex;

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

    gap: 12px;

    min-width: 170px;

    min-height: 55px;

    padding: 0 25px;

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

    border-radius: 4px;

    background: var(--tabarak-blue);

    color: var(--tabarak-navy) !important;

    font-size: 13px;

    font-weight: 800;

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

.btn-primary-custom i {
    font-size: 15px;

    transition: transform .3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);

    background: #ffffff;

    border-color: #ffffff;

    color: var(--tabarak-navy) !important;
}

.btn-primary-custom:hover i {
    transform: translateX(-4px);
}


/* Outline */

.hero-buttons .btn-outline-light {
    display: inline-flex;

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

    min-width: 150px;

    min-height: 55px;

    padding: 0 25px;

    border-width: 1px;

    border-radius: 4px;

    color: #ffffff !important;

    background: rgba(255, 255, 255, .03);

    backdrop-filter: blur(4px);

    font-size: 13px;

    font-weight: 700;

    transition: .3s ease;
}

.hero-buttons .btn-outline-light:hover {
    background: #ffffff;

    border-color: #ffffff;

    color: var(--tabarak-navy) !important;

    transform: translateY(-3px);
}


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

.hero-scroll {
    position: absolute;

    z-index: 5;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255, 255, 255, .65);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    white-space: nowrap;

    text-transform: uppercase;
}

.hero-scroll i {
    display: flex;

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

    width: 30px;
    height: 30px;

    border: 1px solid rgba(255, 255, 255, .3);

    border-radius: 50%;

    color: var(--tabarak-blue);

    font-size: 13px;

    animation: heroScroll 1.8s infinite ease-in-out;
}

@keyframes heroScroll {

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

    50% {
        transform: translateY(6px);
    }
}


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

.hero-pagination {
    position: absolute !important;

    z-index: 10;

    right: auto !important;
    left: 50% !important;

    bottom: 30px !important;

    width: auto !important;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;

    margin: 0 !important;

    opacity: 1;

    background: rgba(255, 255, 255, .35);

    border-radius: 50%;

    transition:
        width .3s ease,
        background .3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 25px;

    border-radius: 10px;

    background: var(--tabarak-blue);
}


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

.hero-navigation {
    position: absolute;

    z-index: 10;

    right: 45px;

    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 8px;
}

html[dir="rtl"] .hero-navigation {
    right: auto;

    left: 45px;
}


/* Navigation buttons */

.hero-navigation button {
    display: flex;

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

    width: 45px;
    height: 45px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, .3);

    border-radius: 3px;

    background: rgba(255, 255, 255, .04);

    color: #ffffff;

    cursor: pointer;

    backdrop-filter: blur(5px);

    transition: .3s ease;
}

.hero-navigation button:hover {
    background: var(--tabarak-blue);

    border-color: var(--tabarak-blue);

    color: var(--tabarak-navy);

    transform: translateY(-2px);
}

.hero-navigation button i {
    font-size: 15px;
}


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

.hero-empty {
    background:
        linear-gradient(
            135deg,
            var(--tabarak-navy),
            var(--tabarak-navy-2)
        );
}

.hero-empty .hero-content {
    padding-top: 80px;
}


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

.hero-swiper .swiper-slide-active .hero-content {
    animation: heroContentIn .8s ease both;
}

@keyframes heroContentIn {

    from {
        opacity: 0;

        transform: translateY(30px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }
}


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

@media (max-width: 991px) {

    .hero-section,
    .hero-slide {
        min-height: 650px;
    }

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

        padding-top: 70px;
    }

    .hero-title {
        font-size: clamp(40px, 7vw, 62px);
    }

    .hero-description {
        max-width: 600px;

        font-size: 15px;
    }

    .hero-navigation {
        right: 25px;

        bottom: 25px;
    }

    html[dir="rtl"] .hero-navigation {
        right: auto;

        left: 25px;
    }

    .hero-scroll {
        bottom: 27px;
    }

}


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

@media (max-width: 767px) {

    .hero-section,
    .hero-slide {
        min-height: 650px;

        height: 100svh;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, .94),
                rgba(0, 0, 0, .68)
            );
    }

    html[dir="rtl"] .hero-overlay {
        background:
            linear-gradient(
                270deg,
                rgba(0, 0, 0, .94),
                rgba(0, 0, 0, .68)
            );
    }

    .hero-content {
        max-width: 100%;

        padding-top: 85px;
    }

    .hero-subtitle {
        margin-bottom: 16px;

        font-size: 9px;

        letter-spacing: 1px;
    }

    .hero-subtitle::before {
        width: 28px;
    }

    .hero-title {
        margin-bottom: 20px;

        font-size: clamp(34px, 10vw, 48px);

        line-height: 1.2;

        letter-spacing: -.5px;
    }

    .hero-description {
        margin-bottom: 25px;

        font-size: 13px;

        line-height: 1.9;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn,
    .btn-primary-custom,
    .hero-buttons .btn-outline-light {
        min-height: 50px;

        min-width: 0;

        padding: 0 20px;

        font-size: 12px;
    }

    .hero-navigation {
        right: 15px;

        bottom: 20px;

        gap: 5px;
    }

    html[dir="rtl"] .hero-navigation {
        right: auto;

        left: 15px;
    }

    .hero-navigation button {
        width: 38px;
        height: 38px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-pagination {
        bottom: 25px !important;
    }

}


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

@media (max-width: 480px) {

    .hero-section,
    .hero-slide {
        min-height: 620px;
    }

    .hero-content {
        padding-top: 75px;
    }

    .hero-title {
        font-size: 33px;
    }

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

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons .btn,
    .btn-primary-custom,
    .hero-buttons .btn-outline-light {
        width: 100%;
    }

    .hero-navigation {
        display: none;
    }

}
/* =========================
   Products Section
========================= */

.products-section {
    background: #FFFFFF;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

/* =========================
   Product Card
========================= */

.product-card {
    background: #ffffff;
    border: 1px solid #E6E1D6;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

/* =========================
   Product Image
========================= */

.product-image {
    position: relative;
    display: block;
    height: 270px;
    overflow: hidden;
    background: #f1f5f9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

/* =========================
   Placeholder
========================= */

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
}

.product-placeholder i {
    font-size: 65px;
    color: #716F6A;
}

/* =========================
   Image Overlay
========================= */

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-view {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    color: #A50034;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.product-card:hover .product-view {
    transform: translateY(0);
}

/* =========================
   Product Content
========================= */

.product-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-content h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.5;
    font-weight: 700;
    min-height: 63px;
}

.product-content h3 a {
    color: #262626;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-content h3 a:hover {
    color: #A50034;
}

/* =========================
   Description
========================= */

.product-description {
    margin: 0 0 20px;
    color: #716F6A;
    font-size: 15px;
    line-height: 1.8;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: 81px;
}

/* =========================
   Product Footer
========================= */

.product-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #F0ECE4;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* =========================
   Price
========================= */

.product-price {
    font-size: 17px;
    font-weight: 700;
    color: #A50034;
    white-space: nowrap;
}

/* =========================
   WhatsApp Button
========================= */

.product-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    background: #A50034;
    color: #ffffff !important;

    padding: 10px 15px;
    border-radius: 9px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.3s ease;
}

.product-whatsapp:hover {
    background: #7D0028;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.product-whatsapp i {
    font-size: 17px;
}

/* =========================
   Tablet
========================= */

@media (max-width: 991px) {

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .product-image {
        height: 240px;
    }

}

/* =========================
   Mobile
========================= */

@media (max-width: 575px) {

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image {
        height: 250px;
    }

    .product-content {
        padding: 18px;
    }

    .product-content h3 {
        font-size: 19px;
        min-height: auto;
    }

    .product-description {
        min-height: auto;
        margin-bottom: 18px;
    }

    .product-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .product-price {
        text-align: center;
    }

    .product-whatsapp {
        width: 100%;
    }

}


/* =========================================================
   TABARAK — LG-INSPIRED PREMIUM RED DESIGN SYSTEM
   Colors inspired by LG's current visual identity:
   Active Red #FD312E / Heritage Red #A50034 / Black / Warm Gray.
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    background: #F6F3EB !important;
    color: #262626;
}

::selection {
    background: #FD312E;
    color: #fff;
}

/* ---------- Global surfaces ---------- */
.section,
section {
    position: relative;
}

.section-title,
.section-heading {
    color: #000;
}

.section-title::after,
.section-heading::after {
    background: linear-gradient(90deg, #FD312E, #A50034) !important;
    border-radius: 999px;
}

.card,
.service-card,
.value-card,
.project-card,
.product-card,
.feature-card,
.info-card,
.contact-card,
.stat-card {
    background: #fff !important;
    border: 1px solid #E6E1D6 !important;
    border-radius: 22px !important;
    box-shadow: 0 10px 35px rgba(0,0,0,.06) !important;
    overflow: hidden;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.card:hover,
.service-card:hover,
.value-card:hover,
.project-card:hover,
.product-card:hover,
.feature-card:hover,
.info-card:hover,
.contact-card:hover,
.stat-card:hover {
    transform: translateY(-7px);
    border-color: rgba(253,49,46,.30) !important;
    box-shadow: 0 20px 55px rgba(0,0,0,.11) !important;
}

/* ---------- Navbar ---------- */
.navbar,
.site-header,
header {
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(230,225,214,.9);
}

.navbar .nav-link,
.nav-link {
    color: #262626 !important;
    font-weight: 600;
    transition: color .25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.nav-link:hover,
.nav-link.active {
    color: #A50034 !important;
}

.navbar-brand {
    color: #000 !important;
}

.navbar-toggler {
    border-color: #E6E1D6 !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(253,49,46,.12) !important;
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-danger,
.btn-main,
.btn-brand,
.cta-btn {
    background: linear-gradient(135deg, #FD312E 0%, #A50034 100%) !important;
    border: 0 !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: .78rem 1.35rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(165,0,52,.18);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.btn-primary:hover,
.btn-danger:hover,
.btn-main:hover,
.btn-brand:hover,
.cta-btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
    filter: brightness(.97);
    box-shadow: 0 15px 32px rgba(165,0,52,.26);
}

.btn-outline-primary,
.btn-outline-danger,
.btn-outline-light {
    border-radius: 999px !important;
}

.btn-outline-primary,
.btn-outline-danger {
    color: #A50034 !important;
    border-color: #A50034 !important;
}

.btn-outline-primary:hover,
.btn-outline-danger:hover {
    background: #A50034 !important;
    color: #fff !important;
}

/* ---------- Section backgrounds ---------- */
.bg-light,
.section-light {
    background: #F6F3EB !important;
}

.bg-white {
    background: #fff !important;
}

.section-dark,
.bg-dark {
    background: #000 !important;
}

/* ---------- Services ---------- */
.services-grid,
.services-wrapper,
.service-grid {
    gap: 24px;
}

.service-card {
    position: relative;
}

.service-card::before,
.value-card::before,
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FD312E, #A50034);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

[dir="rtl"] .service-card::before,
[dir="rtl"] .value-card::before,
[dir="rtl"] .feature-card::before {
    transform-origin: right;
}

.service-card:hover::before,
.value-card:hover::before,
.feature-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon,
.service-card .service-icon,
.value-card .icon,
.feature-card .icon {
    background: #FFF1F0 !important;
    color: #A50034 !important;
    border: 1px solid rgba(253,49,46,.12);
    border-radius: 18px !important;
}

/* ---------- Icons / circular accents ---------- */
.icon-box,
.icon-wrap,
.service-icon,
.value-icon {
    background: linear-gradient(145deg, #FFF1F0, #fff) !important;
    color: #A50034 !important;
    box-shadow: inset 0 0 0 1px rgba(253,49,46,.10);
}

.icon-box i,
.icon-wrap i,
.service-icon i,
.value-icon i {
    color: #A50034 !important;
}

/* ---------- Project cards ---------- */
.project-card,
.projects .card {
    border-radius: 24px !important;
}

.project-card img,
.projects .card img {
    transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

.project-card:hover img,
.projects .card:hover img {
    transform: scale(1.045);
}

.project-card .overlay,
.project-card::after {
    background: linear-gradient(
        to top,
        rgba(0,0,0,.78),
        rgba(0,0,0,.10) 65%,
        transparent
    ) !important;
}

/* ---------- Tags / badges ---------- */
.badge,
.tag,
.category-badge,
.project-category {
    background: #FFF1F0 !important;
    color: #A50034 !important;
    border: 1px solid rgba(253,49,46,.13);
    border-radius: 999px !important;
    font-weight: 700;
}

/* ---------- Stats ---------- */
.stat-card {
    text-align: center;
}

.stat-card .number,
.stat-card .value,
.counter {
    color: #A50034 !important;
    font-weight: 800;
}

/* ---------- Forms ---------- */
.form-control,
.form-select,
textarea,
input,
select {
    border: 1px solid #E6E1D6 !important;
    background: #fff !important;
    color: #262626 !important;
    border-radius: 14px !important;
    box-shadow: none !important;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus,
select:focus {
    border-color: #FD312E !important;
    box-shadow: 0 0 0 4px rgba(253,49,46,.10) !important;
}

/* ---------- Links ---------- */
a {
    transition: color .25s ease, opacity .25s ease;
}

a:hover {
    color: #A50034;
}

/* ---------- CTA ---------- */
.cta,
.cta-section,
.call-to-action {
    background:
        radial-gradient(circle at 85% 20%, rgba(253,49,46,.25), transparent 32%),
        linear-gradient(135deg, #000 0%, #262626 55%, #A50034 150%) !important;
    border-radius: 28px;
    overflow: hidden;
}

.cta h1,
.cta h2,
.cta h3,
.cta-section h1,
.cta-section h2,
.call-to-action h1,
.call-to-action h2 {
    color: #fff;
}

/* ---------- Footer ---------- */
footer,
.site-footer {
    background: #000 !important;
    color: #fff;
}

footer a,
.site-footer a {
    color: #E6E1D6;
}

footer a:hover,
.site-footer a:hover {
    color: #FD312E;
}

footer .social-icon,
.site-footer .social-icon {
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: #fff;
    border-radius: 50%;
    transition: .25s ease;
}

footer .social-icon:hover,
.site-footer .social-icon:hover {
    background: #FD312E;
    border-color: #FD312E;
    transform: translateY(-3px);
}

/* ---------- Hero ---------- */
.hero,
.hero-section {
    background-color: #000;
}

.hero::before,
.hero-section::before {
    background:
        radial-gradient(circle at 80% 30%, rgba(253,49,46,.28), transparent 32%),
        linear-gradient(135deg, rgba(0,0,0,.96), rgba(0,0,0,.78)) !important;
}

.hero .badge,
.hero-section .badge {
    background: rgba(253,49,46,.12) !important;
    color: #fff !important;
    border-color: rgba(253,49,46,.35);
}

.hero h1,
.hero-section h1 {
    color: #fff;
}

.hero h1 span,
.hero-section h1 span,
.hero .highlight,
.hero-section .highlight {
    color: #FD312E !important;
}

/* ---------- Decorative red details ---------- */
.section-label,
.eyebrow,
.small-title {
    color: #A50034 !important;
    font-weight: 800;
    letter-spacing: .04em;
}

.divider,
.section-divider {
    background: linear-gradient(90deg, #FD312E, #A50034) !important;
    height: 3px;
    border-radius: 999px;
}

/* ---------- Tables ---------- */
.table {
    --bs-table-bg: #fff;
    --bs-table-border-color: #E6E1D6;
    color: #262626;
}

.table thead th {
    background: #000 !important;
    color: #fff !important;
}

.table tbody tr:hover {
    background: #FFF1F0 !important;
}

/* ---------- Mobile ---------- */
@media (max-width: 991.98px) {
    .card,
    .service-card,
    .value-card,
    .project-card,
    .feature-card,
    .info-card {
        border-radius: 18px !important;
    }

    .navbar-collapse {
        background: #fff;
        border-radius: 18px;
        margin-top: 10px;
        padding: 12px;
        box-shadow: 0 15px 40px rgba(0,0,0,.10);
        border: 1px solid #E6E1D6;
    }
}

@media (max-width: 575.98px) {
    .btn-primary,
    .btn-danger,
    .btn-main,
    .btn-brand,
    .cta-btn {
        width: 100%;
    }
}
