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

:root {
    --navy: #1a1f5e;
    --navy-dark: #0f1340;
    --navy-light: #2d3380;
    --gold: #f5a623;
    --gold-light: #ffc145;
    --pink: #e91e8c;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --light-gray: #eef0f8;
    --text-dark: #1a1f5e;
    --text-mid: #444870;
    --text-light: #8890c4;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Tajawal', sans-serif;
    background: #fff;
    color: var(--text-dark);
    overflow-x: hidden
}

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

/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: all .4s
}

nav.scrolled {
    background: rgba(26, 31, 94, .97);
    box-shadow: 0 4px 40px rgba(0, 0, 0, .3);
    height: 68px;
    backdrop-filter: blur(12px)
}

.nav-logo img {
    height: 60px;
    transition: .4s
}

nav.scrolled .nav-logo img {
    height: 65px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 500;
    position: relative;
    transition: .3s
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    left: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: .3s
}

.nav-links a:hover::after {
    transform: scaleX(1)
}

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

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: .55rem 1.4rem;
    border-radius: 30px;
    font-weight: 700 !important;
    transition: .3s !important
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, .4)
}

.nav-cta::after {
    display: none !important
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    display: block;
    transition: .3s;
    transform-origin: center
}

.mobile-nav {
    display: none
}

/* HERO */
#hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #2a2f7a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px
}

.hero-bg-fx {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(245, 166, 35, .15) 0%, transparent 40%), radial-gradient(circle at 10% 80%, rgba(233, 30, 140, .1) 0%, transparent 35%)
}

.hero-orb {
    position: absolute;
    inset: 0;
    overflow: hidden
}

.hero-orb::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(245, 166, 35, .12) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbPulse 6s ease-in-out infinite
}

.hero-orb::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233, 30, 140, .1) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbPulse 8s ease-in-out infinite reverse
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.15)
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(245, 166, 35, .15);
    border: 1px solid rgba(245, 166, 35, .4);
    color: var(--gold);
    padding: .4rem 1rem;
    border-radius: 30px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeUp .8s ease both
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.5rem;
    animation: fadeUp .9s .2s ease both
}

.hero-title .gold {
    color: var(--gold);
    display: block
}

.hero-desc {
    color: rgba(255, 255, 255, .75);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 520px;
    animation: fadeUp .9s .35s ease both
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    margin-bottom: 2.5rem;
    animation: fadeUp .9s .5s ease both
}

.hero-highlight {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: rgba(255, 255, 255, .85);
    font-size: .95rem
}

.hero-highlight::before {
    content: '✦';
    color: var(--gold);
    font-size: .7rem;
    flex-shrink: 0
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp .9s .65s ease both
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: .85rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    box-shadow: 0 8px 30px rgba(245, 166, 35, .35)
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245, 166, 35, .5)
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, .4);
    color: #fff;
    padding: .85rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: .3s
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1)
}

.hero-visual {
    position: relative;
    animation: fadeLeft .9s .3s ease both
}

.hero-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.hvc {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4)
}

.hvc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.hvc:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3;
    height: 320px
}

.hvc:nth-child(2) {
    height: 150px
}

.hvc:nth-child(3) {
    height: 150px
}

.hvc:nth-child(4) {
    grid-column: 1/3;
    height: 140px
}

.hvc-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 31, 94, .6) 0%, transparent 50%)
}

.hero-fbadge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--navy);
    border: 2px solid var(--gold);
    color: #fff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
    min-width: 150px
}

.hero-fbadge .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1
}

.hero-fbadge .lbl {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    margin-top: .2rem
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .5);
    font-size: .8rem;
    animation: fadeUp 1s 1s ease both
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
    animation: scrollAnim 2s ease-in-out infinite
}

@keyframes scrollAnim {
    0% {
        transform: scaleY(0);
        transform-origin: top
    }

    50% {
        transform: scaleY(1);
        transform-origin: top
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-10px)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

/* COMMONS */
section {
    padding: 100px 5%
}

.container {
    max-width: 1400px;
    margin: 0 auto
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--gold);
    font-weight: 700;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem
}

.section-tag::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
    display: block
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 1rem
}

.section-desc {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 620px
}

.section-header {
    margin-bottom: 4rem
}

.text-center {
    text-align: center
}

.text-center .section-desc {
    margin: 0 auto
}

.text-center .section-tag {
    justify-content: center
}

.text-center .section-tag::before {
    display: none
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ABOUT */
#about {
    background: var(--off-white)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.about-images {
    position: relative;
    height: 560px
}

.about-img-main {
    position: absolute;
    right: 0;
    top: 0;
    width: 72%;
    height: 430px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(26, 31, 94, .2)
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-img-sec {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 31, 94, .25);
    border: 5px solid #fff
}

.about-img-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-exp-badge {
    position: absolute;
    left: 43%;
    bottom: 160px;
    background: var(--navy);
    color: #fff;
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    text-align: center;
    box-shadow: 0 15px 50px rgba(26, 31, 94, .35);
    z-index: 2;
    animation: float 5s ease-in-out infinite
}

.about-exp-badge .num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1
}

.about-exp-badge .txt {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    margin-top: .3rem
}

.about-text {}

.about-desc {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1rem
}

.about-features {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(26, 31, 94, .08);
    transition: .3s
}

.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(26, 31, 94, .1)
}

.about-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0
}

.about-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-feature-text h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .2rem
}

.about-feature-text p {
    font-size: .82rem;
    color: var(--text-mid);
    line-height: 1.5
}

/* SERVICES */
#services {
    background: #fff
}

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

.service-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(26, 31, 94, .1);
    transition: .4s cubic-bezier(.25, .8, .25, 1);
    background: #fff
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(26, 31, 94, .2)
}

.service-card-img {
    height: 220px;
    overflow: hidden;
    position: relative
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s
}

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

.service-card-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, var(--navy) 100%);
    opacity: .6;
    transition: .4s
}

.service-card:hover .service-card-img-ov {
    opacity: .85
}

.service-card-content {
    padding: 1.5rem
}

.service-card-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(26, 31, 94, .08);
    line-height: 1;
    margin-bottom: .5rem
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .6rem
}

.service-card p {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.7
}

.service-tag {
    display: inline-block;
    margin-top: 1rem;
    background: var(--light-gray);
    color: var(--navy);
    padding: .3rem .8rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    transition: .3s
}

.service-card:hover .service-tag {
    background: var(--gold);
    color: var(--navy)
}

/* FINISHING */
#finishing {
    background: var(--off-white)
}

.finishing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.finishing-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(26, 31, 94, .08);
    transition: .35s;
    box-shadow: 0 4px 20px rgba(26, 31, 94, .06)
}

.finishing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(26, 31, 94, .15)
}

.finishing-card-img {
    height: 180px;
    overflow: hidden
}

.finishing-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.finishing-card:hover .finishing-card-img img {
    transform: scale(1.07)
}

.finishing-card-body {
    padding: 1.3rem
}

.finishing-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .4rem
}

.finishing-card-body p {
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.65
}

/* WHY US */
#why {
    background: #fff
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.why-img {
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 30px 80px rgba(26, 31, 94, .18);
    position: relative
}

.why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.why-img-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(26, 31, 94, .9);
    border: 1px solid var(--gold);
    color: #fff;
    border-radius: 14px;
    padding: 1rem 1.3rem;
    backdrop-filter: blur(8px)
}

.why-img-badge .num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1
}

.why-img-badge .lbl {
    font-size: .78rem;
    color: rgba(255, 255, 255, .7);
    margin-top: .2rem
}

.why-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(26, 31, 94, .08);
    background: var(--off-white);
    transition: .3s
}

.why-item:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(26, 31, 94, .1);
    transform: translateX(-4px)
}

.why-item-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0
}

.why-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.why-item-text h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .2rem
}

.why-item-text p {
    font-size: .85rem;
    color: var(--text-mid);
    line-height: 1.55
}

/* STATISTICS */
#statistics {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden
}

#statistics::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(245, 166, 35, .12) 0%, transparent 40%), radial-gradient(circle at 80% 50%, rgba(233, 30, 140, .1) 0%, transparent 35%)
}

.stats-inner {
    position: relative;
    z-index: 1
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(8px);
    transition: .3s;
    position: relative;
    overflow: hidden
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--pink));
    transform: scaleX(0);
    transform-origin: right;
    transition: .4s
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .08)
}

.stat-card:hover::before {
    transform: scaleX(1)
}

.stat-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto 1rem;
    opacity: .7;
    transition: .3s
}

.stat-card:hover .stat-img {
    opacity: 1;
    transform: scale(1.08)
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.stat-plus {
    font-size: 2rem
}

.stat-label {
    color: rgba(255, 255, 255, .7);
    font-size: .95rem;
    margin-top: .5rem;
    font-weight: 500
}

/* CLIENTS */
#clients {
    background: var(--off-white)
}

.marquee-wrap {
    overflow: hidden;
    margin-top: 3rem;
    position: relative
}

.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2
}

.marquee-wrap::before {
    right: 0;
    background: linear-gradient(to left, var(--off-white), transparent)
}

.marquee-wrap::after {
    left: 0;
    background: linear-gradient(to right, var(--off-white), transparent)
}

.marquee-track {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: marquee 25s linear infinite;
    width: max-content
}

.marquee-track:hover {
    animation-play-state: paused
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.client-card {
    flex-shrink: 0;
    width: 160px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(26, 31, 94, .08);
    padding: 1rem;
    filter: grayscale(100%);
    opacity: .6;
    transition: .3s;
    cursor: pointer
}

.client-card:hover {
    filter: grayscale(0%);
    opacity: 1;
    box-shadow: 0 8px 30px rgba(26, 31, 94, .1);
    transform: scale(1.05)
}

.client-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .05em
}

/* PORTFOLIO */
#portfolio {
    background: #fff
}

.pf-filter {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    justify-content: center
}

.filter-btn {
    padding: .55rem 1.4rem;
    border-radius: 30px;
    border: 2px solid rgba(26, 31, 94, .15);
    background: #fff;
    color: var(--text-mid);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    font-family: 'Tajawal', sans-serif
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy)
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 12px
}

.pf-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer
}

.pf-item.wide {
    grid-column: span 2
}

.pf-item.tall {
    grid-row: span 2
}

.pf-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s
}

.pf-item:hover img {
    transform: scale(1.08)
}

.pf-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 31, 94, .9) 0%, rgba(26, 31, 94, .2) 60%, transparent 100%);
    opacity: 0;
    transition: .4s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem
}

.pf-item:hover .pf-ov {
    opacity: 1
}

.pf-info h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .2rem
}

.pf-info p {
    color: rgba(255, 255, 255, .7);
    font-size: .82rem
}

.pf-zoom {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: .3s
}

.pf-item:hover .pf-zoom {
    transform: scale(1)
}

.pf-zoom svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none
}

/* TESTIMONIALS */
#testimonials {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden
}

#testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 30%, rgba(245, 166, 35, .1) 0%, transparent 40%)
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1
}

.test-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2rem;
    transition: .3s;
    backdrop-filter: blur(8px)
}

.test-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-6px)
}

.test-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 1.1rem
}

.test-text {
    color: rgba(255, 255, 255, .85);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic
}

.test-author {
    display: flex;
    align-items: center;
    gap: .75rem
}

.test-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    flex-shrink: 0
}

.test-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.test-name {
    color: #fff;
    font-weight: 700;
    font-size: .95rem
}

.test-role {
    color: rgba(255, 255, 255, .5);
    font-size: .82rem;
    margin-top: .1rem
}

/* CONTACT */
#contact {
    background: var(--off-white);
    position: relative;
    overflow: hidden
}

#contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 31, 94, .05) 0%, transparent 70%)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem
}

.contact-icon-img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0
}

.contact-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.contact-item-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .2rem
}

.contact-item-text p {
    font-size: .9rem;
    color: var(--text-mid)
}

.social-links {
    display: flex;
    gap: .75rem;
    margin-top: 2rem
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-3px)
}

.social-link svg {
    width: 18px;
    height: 18px
}

.contact-form {
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(26, 31, 94, .1)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.form-group {
    margin-bottom: 1.2rem
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    font-size: .9rem;
    margin-bottom: .5rem
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: .85rem 1.1rem;
    border: 1.5px solid rgba(26, 31, 94, .15);
    border-radius: 12px;
    font-family: 'Tajawal', sans-serif;
    font-size: .95rem;
    color: var(--navy);
    background: #fff;
    transition: .3s;
    outline: none
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(26, 31, 94, .07)
}

.form-group textarea {
    height: 130px;
    resize: vertical
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
    margin-top: .5rem
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 31, 94, .3)
}

#formSuccess {
    display: none;
    text-align: center;
    padding: 2rem
}

#formSuccess h3 {
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .5rem
}

#formSuccess p {
    color: var(--text-mid)
}

/* FOOTER */
footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, .7);
    padding: 80px 5% 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1.5rem
}

.footer-brand p {
    font-size: .9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .6);
    max-width: 280px
}

.footer-col h4 {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    position: relative
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--gold)
}

.footer-links {
    list-style: none
}

.footer-links li {
    margin-bottom: .7rem
}

.footer-links a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: .9rem;
    transition: .3s
}

.footer-links a:hover {
    color: var(--gold)
}

.nl-form {
    display: flex;
    gap: .5rem;
    margin-top: 1rem
}

.nl-input {
    flex: 1;
    padding: .7rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .07);
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    font-size: .9rem;
    outline: none
}

.nl-input::placeholder {
    color: rgba(255, 255, 255, .4)
}

.nl-btn {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: .7rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    font-size: .9rem;
    transition: .3s;
    white-space: nowrap
}

.nl-btn:hover {
    background: var(--gold-light)
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .85rem;
    color: rgba(255, 255, 255, .4)
}

.footer-bottom a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: .3s
}

.footer-bottom a:hover {
    color: var(--gold)
}

.back-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 100;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(26, 31, 94, .3);
    cursor: pointer;
    transition: .3s;
    opacity: 0;
    pointer-events: none;
    text-decoration: none
}

.back-top.visible {
    opacity: 1;
    pointer-events: all
}

.back-top:hover {
    background: var(--gold);
    transform: translateY(-3px)
}

.back-top svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none
}

/* RESPONSIVE */
@media(max-width:1100px) {

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

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

    .pf-item.wide {
        grid-column: span 1
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero-visual {
        display: none
    }

    .about-grid,
    .why-grid {
        grid-template-columns: 1fr
    }

    .about-images {
        height: 350px
    }

    .why-img {
        height: 300px
    }

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

    .test-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:700px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .mobile-nav {
        display: block;
        position: fixed;
        inset: 0;
        background: var(--navy);
        z-index: 999;
        transform: translateX(-100%);
        transition: .4s;
        padding: 6rem 2rem 2rem
    }

    .mobile-nav.open {
        transform: translateX(0)
    }

    .mobile-nav ul {
        list-style: none
    }

    .mobile-nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        padding: 1rem 0
    }

    .mobile-nav ul a {
        color: #fff;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 600
    }

    .hero-title {
        font-size: 2.8rem
    }

    .services-grid,
    .finishing-grid {
        grid-template-columns: 1fr
    }

    .pf-grid {
        grid-template-columns: 1fr 1fr
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .test-grid {
        grid-template-columns: 1fr
    }

    .about-features {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

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

    .nl-form {
        flex-direction: column
    }
}