/* =========================================================
   NOOR AL JADEED LOCKS
   Main Stylesheet
   English / LTR
   ========================================================= */

:root {
    --primary: #22c55e;
    --primary-dark: #16a34a;
    --whatsapp: #25D366;

    --dark: #111111;
    --dark-soft: #181818;
    --text: #222222;
    --gray: #666666;
    --light: #f7f8fa;
    --white: #ffffff;

    --border: rgba(0, 0, 0, 0.08);
    --radius: 18px;
    --transition: 0.35s ease;

    --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 45px rgba(0, 0, 0, 0.14);
}


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

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    direction: ltr;
    text-align: left;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background: var(--primary);
    color: var(--white);
}


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

.container {
    width: min(92%, 1280px);
    margin: 0 auto;
}


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

.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.header .container {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
    height: 82px;
    gap: 20px;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}


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

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

    min-width: 180px;
    height: 58px;
    padding: 0 22px;

    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;

    transition: var(--transition);
}

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

.btn.green:hover {
    background: var(--primary-dark);
}

.btn.dark {
    background: var(--dark);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   TOP TRUST BAR
   ========================================================= */

.top-trust-bar {
    width: 100%;
    background: var(--white);
    border-bottom: 2px solid var(--primary);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 100;
}

.top-trust-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 55px;

    min-height: 42px;
    white-space: nowrap;

    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

.top-trust-track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-trust-track i {
    color: var(--primary);
    font-size: 15px;
}


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

.hero {
    background: var(--white);
    padding: 90px 0 70px;
}

.hero-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 70px;
}

.hero-content {
    text-align: left;
}

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

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

    padding: 10px 22px;
    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;

    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--dark);
    margin-bottom: 24px;
}

.hero p {
    max-width: 680px;
    font-size: 19px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}


/* =========================================================
   TRUST STATS
   ========================================================= */

.trust {
    margin-top: 65px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.trust-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);

    padding: 24px 18px;
    text-align: center;

    box-shadow: var(--shadow);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.trust-item h3 {
    color: var(--primary);
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 8px;
    font-weight: 800;
}

.trust-item p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   GENERAL SECTION TITLE
   ========================================================= */

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

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

    padding: 9px 21px;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;

    margin-bottom: 18px;
}

.section-title h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.section-title p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
}

.section-title.white h2,
.section-title.white p {
    color: var(--white);
}


/* =========================================================
   FEATURES
   ========================================================= */

.features {
    padding: 90px 0;
    background: var(--light);
}

.features .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);

    padding: 35px 25px;
    text-align: center;

    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-card .icon {
    font-size: 46px;
    line-height: 1;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 21px;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 800;
}

.feature-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.75;
}


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

.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);

    padding: 35px;
    text-align: center;

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.service-icon {
    width: 78px;
    height: 78px;

    margin: 0 auto 24px;
    border-radius: 50%;

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

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

    font-size: 32px;
}

.service-card h3 {
    font-size: 21px;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 14px;
    font-weight: 800;
}

.service-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
}


/* =========================================================
   WHY US
   ========================================================= */

.why-us {
    padding: 100px 0;
    background: var(--dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius);

    padding: 35px;
    text-align: center;

    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.10);
}

.why-icon {
    width: 78px;
    height: 78px;

    margin: 0 auto 24px;
    border-radius: 50%;

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

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

    font-size: 32px;
}

.why-card h3 {
    color: var(--white);
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 14px;
    font-weight: 800;
}

.why-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-card {
    height: 100%;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);

    padding: 35px;
    text-align: center;

    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.stars {
    color: #f5b301;
    font-size: 23px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.testimonial-card p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: var(--dark);
    font-size: 18px;
    font-weight: 800;
}


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

.testimonialsSwiper {
    overflow: hidden;
}

.testimonialsSwiper .swiper-slide {
    height: auto;
}

@media (min-width: 768px) {
    .testimonialsSwiper .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        transform: none !important;
    }

    .testimonialsSwiper .swiper-slide {
        width: auto !important;
    }
}

@media (max-width: 767px) {
    .testimonialsSwiper {
        overflow: hidden;
    }

    .testimonialsSwiper .swiper-slide {
        width: 85%;
    }
}


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

.contact {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
}

.contact .section-title h2,
.contact .section-title p {
    color: var(--white);
}

.contact .section-title span {
    background: var(--white);
    color: var(--primary);
}

.contact-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-btn {
    width: 250px;
    min-height: 60px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;

    border-radius: 999px;

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

    font-size: 18px;
    font-weight: 800;

    transition: var(--transition);
}

.contact-btn.whatsapp {
    background: var(--dark);
    color: var(--white);
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

.service-area {
    margin-top: 50px;
    text-align: center;
}

.service-area h3 {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 10px;
    font-weight: 800;
}

.service-area p {
    font-size: 18px;
    line-height: 1.6;
}


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

.footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.footer-logo {
    width: 90px;
    max-height: 90px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.footer h3 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 800;
}

.footer p {
    max-width: 850px;
    margin: 0 auto 10px;
    color: #cccccc;
    font-size: 15px;
    line-height: 1.7;
}

.footer .copyright {
    margin-top: 25px;
    font-size: 13px;
    color: #999999;
}


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

.floating-call,
.floating-whatsapp {
    position: fixed;
    right: 20px;

    width: 56px;
    height: 56px;

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

    border-radius: 50%;

    color: var(--white);
    font-size: 23px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);

    transition: var(--transition);
    z-index: 999;
}

.floating-call {
    bottom: 90px;
    background: var(--dark);
}

.floating-whatsapp {
    bottom: 20px;
    background: var(--whatsapp);
}

.floating-call:hover,
.floating-whatsapp:hover {
    transform: scale(1.08);
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .hero-container {
        gap: 45px;
    }

    .hero h1 {
        font-size: 52px;
    }

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

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

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


/* =========================================================
   RESPONSIVE — TABLET / MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .container {
        width: min(92%, 600px);
    }

    /* Header */

    .header {
        padding: 6px 0;
    }

    .header .container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 8px;
        height: 60px;
        padding: 0;
    }

    .logo {
        order: 0;
    }

    .logo img {
        height: 34px;
        max-width: 125px;
    }

    .header .btn {
        min-width: unset;
        width: 100%;
        height: 38px;
        padding: 0 8px;
        font-size: 11px;
    }

    .header .btn.dark {
        justify-self: end;
    }

    .header .btn.green {
        justify-self: start;
    }


    /* Top Trust Bar */

    .top-trust-bar {
        height: 34px;
    }

    .top-trust-track {
        justify-content: flex-start;
        width: max-content;
        gap: 40px;
        min-height: 34px;
        height: 34px;
        font-size: 11px;
        animation: trustBar 22s linear infinite;
    }

    .top-trust-track i {
        font-size: 12px;
    }


    /* Hero */

    .hero {
        padding: 45px 0 55px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-content {
        text-align: center;
    }

    .badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.12;
        letter-spacing: -1px;
        margin-bottom: 18px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.75;
        margin: 0 auto 25px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        height: 50px;
        font-size: 15px;
    }

    .hero-image img {
        max-width: 430px;
        border-radius: 22px;
    }


    /* Trust */

    .trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-top: 40px;
    }

    .trust-item {
        padding: 17px 12px;
    }

    .trust-item h3 {
        font-size: 22px;
    }

    .trust-item p {
        font-size: 12px;
    }


    /* Section Titles */

    .section-title {
        margin-bottom: 40px;
    }

    .section-title span {
        font-size: 12px;
        padding: 8px 16px;
    }

    .section-title h2 {
        font-size: 29px;
        line-height: 1.25;
    }

    .section-title p {
        font-size: 15px;
        line-height: 1.75;
    }


    /* Sections */

    .features,
    .services,
    .why-us,
    .testimonials,
    .contact {
        padding: 65px 0;
    }


    /* Feature / Service */

    .features .container,
    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card,
    .service-card {
        padding: 27px 20px;
    }

    .feature-card .icon {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .feature-card h3,
    .service-card h3,
    .why-card h3 {
        font-size: 20px;
    }

    .feature-card p,
    .service-card p,
    .why-card p,
    .testimonial-card p {
        font-size: 14px;
        line-height: 1.75;
    }

    .service-icon,
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 29px;
        margin-bottom: 20px;
    }


    /* Testimonials */

    .testimonial-card {
        padding: 26px 20px;
    }

    .stars {
        font-size: 20px;
    }

    .testimonial-card h4 {
        font-size: 17px;
    }


    /* Contact */

    .contact-box {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }

    .contact-btn {
        width: 100%;
        max-width: 300px;
        min-height: 50px;
        font-size: 16px;
    }

    .service-area {
        margin-top: 35px;
    }

    .service-area h3 {
        font-size: 21px;
    }

    .service-area p {
        font-size: 15px;
    }


    /* Footer */

    .footer {
        padding: 45px 0;
    }

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

    .footer h3 {
        font-size: 21px;
    }

    .footer p {
        font-size: 13px;
    }

    .footer .copyright {
        font-size: 12px;
    }


    /* Floating Buttons */

    .floating-call,
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        right: 15px;
        font-size: 21px;
    }

    .floating-call {
        bottom: 80px;
    }

    .floating-whatsapp {
        bottom: 15px;
    }
}


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

@media (max-width: 420px) {

    .header .container {
        gap: 5px;
    }

    .header .btn {
        font-size: 10px;
        padding: 0 5px;
    }

    .logo img {
        height: 30px;
        max-width: 105px;
    }

    .hero h1 {
        font-size: 31px;
    }

    .hero p {
        font-size: 15px;
    }

    .trust-item h3 {
        font-size: 20px;
    }

    .trust-item p {
        font-size: 11px;
    }

    .section-title h2 {
        font-size: 26px;
    }
}


/* =========================================================
   TOP BAR ANIMATION
   ========================================================= */

@keyframes trustBar {

    0% {
        transform: translateX(-20%);
    }

    100% {
        transform: translateX(100%);
    }

}

@media (min-width: 769px) {

    .top-trust-track {
        animation: none;
    }

    .top-trust-track:hover {
        animation-play-state: paused;
    }

}
/* Mobile Company Name */

.mobile-company-name {
    display: none;
}

@media (max-width: 768px) {

    .mobile-company-name {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        margin: 0 auto 18px;

        text-align: center;
        line-height: 1;
    }

    .mobile-company-name span {
        font-size: 42px;
        font-weight: 800;
        letter-spacing: 3px;
        color: #111111;
        line-height: 0.95;
    }

    .mobile-company-name strong {
        margin-top: 7px;

        font-size: 15px;
        font-weight: 800;
        letter-spacing: 3px;

        color: #16a34a;
        line-height: 1;
    }
}
