/* Al Falah Advertising - Nova Sign inspired theme */
:root {
    --primary: #e31c23;
    --primary-dark: #b8141a;
    --primary-light: #ff3b42;
    --accent-red: #e31c23;
    --header-top: #2c2e33;
    --header-nav: #232529;
    --dark: #2c2e33;
    --dark-2: #232529;
    --dark-3: #1a1c20;
    --text: #333;
    --text-light: #666;
    --text-muted: #999;
    --white: #fff;
    --gray-100: #f5f7fa;
    --gray-200: #e8ecf1;
    --shadow: 0 4px 20px rgba(0,0,0,.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.15);
    --radius: 8px;
    --transition: .3s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; font-family: var(--font-heading); font-weight: 600;
    font-size: 14px; text-transform: uppercase; letter-spacing: .5px;
    border: 2px solid transparent; border-radius: var(--radius);
    cursor: pointer; transition: var(--transition);
}
.btn--primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-light); border-color: var(--primary-light); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--white); }
.btn--sm { padding: 8px 18px; font-size: 12px; }
.btn--lg { padding: 16px 36px; font-size: 15px; }
.btn--block { width: 100%; }

/* Site Header (Nova Sign style) */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.header-top {
    background: var(--header-top);
    color: var(--white);
    padding: 16px 0;
}

.header-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.logo__img {
    display: block;
    height: 48px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
}

.logo--footer .logo__img {
    height: 44px;
    max-width: 220px;
    margin-bottom: 14px;
}

.fe-edit--logo {
    display: inline-flex;
    align-items: center;
}

.fe-edit--logo .fe-edit__form {
    top: auto;
    bottom: -6px;
    right: 0;
}

.header-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    flex: 1;
}

.header-contact__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.header-contact__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 18px;
    line-height: 1;
}

.header-contact__text strong {
    font-weight: 600;
    margin-right: 4px;
    color: var(--white);
}

.header-contact__text a {
    color: var(--white);
    font-weight: 400;
}

.header-contact__text a:hover {
    color: var(--accent-red);
}

.header-contact__wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white) !important;
    font-size: 12px;
    vertical-align: middle;
}

.header-contact__wa:hover {
    background: #1ebe57;
    transform: scale(1.08);
}

.header-contact__item--address .header-contact__text {
    display: flex;
    flex-direction: column;
}

.header-nav {
    background: var(--header-nav);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.nav__item {
    position: relative;
}

.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    padding: 15px 18px;
    position: relative;
    white-space: nowrap;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--accent-red);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav__caret {
    font-size: 9px;
    opacity: .75;
    transition: transform .2s ease;
}

.nav__item:hover > .nav__link,
.nav__item.is-open > .nav__link,
.nav__link:hover,
.nav__link.active {
    color: var(--accent-red);
}

.nav__item:hover > .nav__link::after,
.nav__item.is-open > .nav__link::after,
.nav__link:hover::after,
.nav__link.active::after {
    transform: scaleX(1);
}

.nav__item:hover .nav__caret,
.nav__item.is-open .nav__caret {
    transform: rotate(180deg);
}

/* Dropdown */
.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #000;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 1100;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.nav__item:hover > .nav__dropdown,
.nav__item.is-open > .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown li a {
    display: block;
    padding: 11px 22px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease;
}

.nav__dropdown li a:hover {
    color: var(--accent-red);
    background: rgba(255,255,255,.04);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero */
.hero { position: relative; height: 85vh; min-height: 500px; max-height: 900px; overflow: hidden; }
.hero__slider { height: 100%; position: relative; }
.hero__slide {
    position: absolute; inset: 0;
    opacity: 0; visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
    display: flex; align-items: center; justify-content: flex-start;
    padding: 0 40px 0 clamp(72px, 10vw, 140px);
}
.hero__slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.9;
    z-index: 0;
}
.hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(20,22,26,.55) 0%, rgba(20,22,26,.2) 45%, transparent 100%);
    pointer-events: none;
}
.hero__content {
    position: relative; z-index: 2; color: var(--white);
    width: 100%; max-width: 680px;
    margin: 0; padding: 0;
    text-align: left;
}
.hero__badge {
    display: inline-block; background: var(--primary); color: var(--white);
    padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
}
.hero__content h1 {
    font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800; line-height: 1.2; margin: 0 0 20px; text-align: left;
}
.hero__content p,
.hero__content .page-intro__text {
    font-size: 18px; opacity: .95; margin: 0 0 30px; max-width: 600px; text-align: left;
}
.hero__dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; }
.hero__dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--white); background: transparent; cursor: pointer; transition: var(--transition); }
.hero__dot.active, .hero__dot:hover { background: var(--primary); border-color: var(--primary); }
.hero__arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 50px; height: 50px; border-radius: 50%; border: none;
    background: rgba(255,255,255,.15); color: var(--white); font-size: 18px;
    cursor: pointer; transition: var(--transition); backdrop-filter: blur(4px);
}
.hero__arrow:hover { background: var(--primary); color: var(--white); }
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }

/* Sections */
.section { padding: 80px 0; }
.section--alt { background: var(--gray-100); }
.section__header { margin-bottom: 50px; }
.section__header.text-center { text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; }
.section__label {
    display: inline-block; color: var(--primary); font-family: var(--font-heading);
    font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section__header h2 { font-family: var(--font-heading); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.3; }
.section__lead { font-size: 18px; color: var(--text-light); margin-bottom: 16px; }

/* Pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.pillar-card {
    background: var(--white); padding: 40px 30px; border-radius: var(--radius);
    box-shadow: var(--shadow); text-align: center; transition: var(--transition);
    border-top: 4px solid var(--primary);
}
.pillar-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pillar-card__icon {
    width: 70px; height: 70px; margin: 0 auto 20px; background: var(--gray-100);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--primary);
}
.pillar-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.pillar-card p { color: var(--text-light); font-size: 15px; }

/* Service Blocks */
.service-block { padding: 80px 0; }
.service-block--alt { background: var(--gray-100); }
.service-block__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.service-block__header h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--dark); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.service-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: var(--transition);
}
.service-block--alt .service-card { background: var(--white); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card__image { position: relative; height: 220px; overflow: hidden; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card__image img { transform: scale(1.08); }
.service-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(35,37,41,.7), transparent); }
.service-card__body { padding: 24px; }
.service-card__body h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card__body p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* Stats */
.section--stats { background: var(--dark); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item__value { display: block; font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.stat-item__label { color: rgba(255,255,255,.8); font-size: 15px; text-transform: uppercase; letter-spacing: 1px; }

/* Content Block */
.content-block { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.content-block:nth-child(even) .content-block__image { order: -1; }
.content-block__text h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.prose p { margin-bottom: 16px; color: var(--text-light); }
.content-block__image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 400px; object-fit: cover; }

/* Clients */
.clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: center; }
.client-logo {
    background: var(--white); padding: 20px; border-radius: var(--radius);
    box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center;
    height: 100px; transition: var(--transition);
}
.client-logo:hover { transform: scale(1.05); }
.client-logo img { max-height: 60px; width: auto; object-fit: contain; filter: grayscale(100%); opacity: .7; transition: var(--transition); }
.client-logo:hover img { filter: none; opacity: 1; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.process-card {
    background: var(--white); padding: 35px 25px; border-radius: var(--radius);
    box-shadow: var(--shadow); text-align: center; position: relative; transition: var(--transition);
}
.process-card:hover { transform: translateY(-5px); }
.process-card__number {
    font-family: var(--font-heading); font-size: 48px; font-weight: 800;
    color: var(--primary); opacity: .3; line-height: 1; margin-bottom: 15px;
}
.process-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.process-card p { font-size: 14px; color: var(--text-light); }

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.portfolio-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.portfolio-item img { width: 100%; height: 280px; object-fit: cover; transition: transform .5s ease; }
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-item figcaption {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(35,37,41,.92), transparent);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
    color: var(--white); opacity: 0; transition: var(--transition);
}
.portfolio-item:hover figcaption { opacity: 1; }
.portfolio-item figcaption span { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); }
.portfolio-item figcaption h4 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; }

/* Why Choose */
.why-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.why-grid__content h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.feature-item { display: flex; gap: 15px; align-items: flex-start; }
.feature-item__icon {
    width: 50px; height: 50px; min-width: 50px; background: var(--primary);
    border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--white);
}
.feature-item h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.feature-item p { font-size: 14px; color: var(--text-light); }
.why-grid__image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 100%; min-height: 500px; object-fit: cover; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.testimonial-card {
    background: var(--white); padding: 40px; border-radius: var(--radius);
    box-shadow: var(--shadow); border-left: 4px solid var(--primary);
}
.testimonial-card__stars { color: var(--primary); margin-bottom: 15px; font-size: 14px; }
.testimonial-card p { font-size: 16px; font-style: italic; color: var(--text-light); margin-bottom: 20px; line-height: 1.8; }
.testimonial-card footer strong { display: block; font-family: var(--font-heading); color: var(--dark); }
.testimonial-card footer span { font-size: 14px; color: var(--text-muted); }

/* Contact */
.section--contact { background: var(--dark); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 16px; }
.contact-info > p { opacity: .85; margin-bottom: 30px; }
.contact-info__list li { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.contact-info__list i { color: var(--primary); font-size: 20px; margin-top: 4px; width: 24px; }
.contact-info__list strong { display: block; font-family: var(--font-heading); margin-bottom: 4px; }
.contact-info__list a:hover { color: var(--primary); }
.contact-map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 360px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,.08);
}
.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; }
.alert--success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert--error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert--error ul { margin: 0; padding-left: 18px; }

/* Footer */
.footer { background: var(--dark-2); color: rgba(255,255,255,.8); padding: 60px 0 0; }
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand h3 { font-family: var(--font-heading); color: var(--white); font-size: 22px; margin-bottom: 12px; }
.footer__brand p { font-size: 14px; margin-bottom: 10px; line-height: 1.7; }
.footer h4 { font-family: var(--font-heading); color: var(--white); font-size: 16px; margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; }
.footer__links-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
}
.footer__links-nav a {
    font-size: 14px;
    line-height: 1.4;
}
.footer__links a:hover { color: var(--primary); }
.footer__contact p { font-size: 14px; margin-bottom: 10px; }
.footer__contact i { color: var(--primary); margin-right: 8px; width: 16px; }
.footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.footer__social-edit { display: inline-flex; }
.footer__social-edit .fe-text__display { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; }
.footer__social-edit .fe-text__toggle {
    font-size: 10px;
    padding: 4px 8px;
    white-space: nowrap;
}
.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: var(--white);
    font-size: 17px;
    line-height: 1;
    transition: var(--transition);
}
.footer__social-link i {
    margin: 0;
    width: auto;
    color: inherit;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.footer__social-link--empty {
    opacity: .7;
    pointer-events: none;
}
.footer__social-link--static {
    cursor: default;
}
.footer__bottom { padding: 20px 0; text-align: center; font-size: 13px; opacity: .7; }

/* Inner Pages (Nova Sign style) */
.page-banner {
    position: relative;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.page-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,46,51,.9) 0%, rgba(35,37,41,.6) 100%);
}
.page-banner__content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 60px 20px;
}
.page-banner__content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
}
.page-banner__content p {
    font-size: 18px;
    opacity: .9;
    max-width: 700px;
}

.page-gallery {
    background: var(--header-nav);
    padding: 24px 0;
    overflow: hidden;
}
.page-gallery__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
}
.page-gallery__item {
    flex: 0 0 280px;
    scroll-snap-align: start;
    border-radius: var(--radius);
    overflow: hidden;
}
.page-gallery__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform .4s ease;
}
.page-gallery__item:hover img { transform: scale(1.05); }

.page-intro__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.page-intro__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}
.page-intro__subtitle {
    font-size: 20px;
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 20px;
}
.page-intro__text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.page-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.page-feature-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.page-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.page-feature-card__image {
    height: 220px;
    overflow: hidden;
}
.page-feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    padding: 20px 22px 8px;
}
.page-feature-card p {
    padding: 0 22px 24px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

.page-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.page-section__grid--right .page-section__image { order: 2; }
.page-section__grid--right .page-section__content { order: 1; }
.page-section__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.page-section__content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 18px;
    line-height: 1.3;
}
.page-section__content .prose {
    margin-bottom: 24px;
}
.page-section__content .prose p {
    margin-bottom: 14px;
    color: var(--text-light);
    line-height: 1.8;
}
.page-section__content .prose ul {
    margin: 0 0 8px;
    padding: 0;
    list-style: none;
}
.page-section__content .prose ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
}
.page-section__content .prose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.page-cta {
    background: var(--dark);
    color: var(--white);
    text-align: center;
}
.page-cta__inner { max-width: 700px; margin: 0 auto; }
.page-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 12px;
}
.page-cta p {
    opacity: .85;
    margin-bottom: 28px;
}
.page-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.page-cta .btn--outline {
    color: var(--white);
    border-color: var(--white);
}
.page-cta .btn--outline:hover {
    background: var(--white);
    color: var(--dark);
}

/* About Us page */
.about-banner .page-banner__content p {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 500;
    max-width: 720px;
    opacity: .95;
}
.about-lead__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}
.about-lead__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227, 28, 35, .1);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
}
.about-lead__text {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-light);
}
.about-lead__text p + p { margin-top: 18px; }
.about-lead__text strong { color: var(--dark); }
.about-lead__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.about-stat {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}
.about-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 28, 35, .25);
}
.about-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}
.about-stat span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}
.about-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.about-service-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}
.about-service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.about-service-card__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(227, 28, 35, .1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.about-service-card__icon i {
    margin: 0;
    width: auto;
    line-height: 1;
}
.about-quality__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-quality__content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--dark);
    margin: 12px 0 20px;
}
.about-quality__content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-quality__card {
    background: linear-gradient(145deg, var(--dark) 0%, var(--dark-2) 100%);
    color: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-quality__card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}
.about-quality__card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 12px;
}
.about-quality__card p {
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    font-size: 15px;
}
.about-coverage__cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}
.about-city {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 30px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    box-shadow: var(--shadow);
}
.about-city i { color: var(--primary); font-size: 12px; }
.about-why__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}
.about-why__list li {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.55;
}
.about-why__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}
.about-mv__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.about-mv__card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}
.about-mv__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.about-mv__icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(227, 28, 35, .1);
    color: var(--primary);
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 18px;
}
.about-mv__card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
}
.about-mv__card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}
.about-closing__inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.about-closing__inner p {
    font-size: 18px;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 28px;
}
.about-closing__inner strong { color: var(--dark); }

@media (max-width: 992px) {
    .about-lead__grid,
    .about-quality__inner,
    .about-mv__grid { grid-template-columns: 1fr; }
    .about-services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .about-services__grid,
    .about-why__list,
    .about-lead__highlights { grid-template-columns: 1fr; }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 25px; right: 25px; z-index: 999;
    width: 56px; height: 56px; background: #25d366; color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 28px; box-shadow: var(--shadow-lg); transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }

/* Responsive */
@media (max-width: 1100px) {
    .header-contact { gap: 16px; }
    .header-contact__item { font-size: 12px; }
    .nav__link { padding: 14px 10px; font-size: 12px; }
    .nav__link::after { left: 10px; right: 10px; }
    .nav__dropdown { min-width: 210px; }
}

@media (max-width: 1024px) {
    .header-contact__item--address { display: none; }
    .logo { font-size: 24px; }
    .pillars, .service-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .page-features__grid { grid-template-columns: repeat(2, 1fr); }
    .content-block, .why-grid, .contact-grid,
    .page-section__grid { grid-template-columns: 1fr; }
    .content-block__image { order: 0 !important; }
    .page-section__grid--right .page-section__image,
    .page-section__grid--right .page-section__content { order: 0; }
    .page-section__image img { height: 300px; }
    .why-grid__image img { min-height: 350px; }
}

@media (max-width: 768px) {
    .header-top__inner { flex-wrap: wrap; }
    .header-contact { display: none; }
    .nav-toggle { display: flex; margin-left: auto; }
    .header-nav { display: none; }
    .header-nav.mobile-open { display: block; }
    .nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .nav__item {
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .nav__link {
        width: 100%;
        justify-content: space-between;
        padding: 14px 20px;
        font-size: 13px;
    }
    .nav__link::after { display: none; }
    .nav__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: rgba(0,0,0,.35);
        box-shadow: none;
        min-width: 100%;
        padding: 0;
    }
    .nav__item.is-open > .nav__dropdown {
        display: block;
    }
    .nav__dropdown li a {
        padding: 10px 20px 10px 32px;
        font-size: 13px;
    }
    .pillars, .service-grid, .process-grid, .stats-grid,
    .clients-grid, .portfolio-grid, .testimonials-grid,
    .features-grid, .footer__grid, .page-features__grid { grid-template-columns: 1fr; }
    .footer__links-nav { grid-template-columns: 1fr; }
    .page-gallery__item { flex: 0 0 220px; }
    .hero { height: 70vh; }
    .hero__slide { padding: 0 24px 0 40px; }
    .section { padding: 50px 0; }
    .hero__arrow { display: none; }
}

/* Frontend editing (logged-in admin only) */
.admin-bar {
    position: sticky;
    top: 0;
    z-index: 1200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: #e31c23;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.admin-bar__left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.admin-bar__guide-btn,
.admin-bar a {
    background: #fff;
    color: #e31c23;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.image-guide {
    display: none;
    position: sticky;
    top: 42px;
    z-index: 1190;
    background: #1a1d23;
    color: #eee;
    padding: 16px 20px;
    border-bottom: 2px solid #e31c23;
}
.image-guide.is-open { display: block; }
.image-guide h4 { margin-bottom: 10px; color: #fff; }
.image-guide ul { margin: 0 0 10px 18px; font-size: 13px; line-height: 1.7; }
.image-guide p { font-size: 13px; color: #bbb; margin-bottom: 10px; }
.image-guide button {
    background: #e31c23; color: #fff; border: none; border-radius: 6px;
    padding: 6px 12px; font-weight: 700; cursor: pointer; font-family: inherit;
}
.fe-text { position: relative; }
.fe-text__display { position: relative; }
.fe-text__toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
    background: #2c2e33;
    color: #fff;
    border: 1px solid #e31c23;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}
.fe-text__toggle:hover { background: #e31c23; }
.fe-text__form {
    display: none;
    margin-top: 8px;
    padding: 12px;
    background: #1a1d23;
    border: 1px solid #e31c23;
    border-radius: 8px;
    max-width: 520px;
}
.fe-text.is-editing .fe-text__form { display: block; }
.fe-text.is-editing .fe-text__toggle { display: none; }
.fe-text__form input,
.fe-text__form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #3a3d44;
    background: #0f1115;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 8px;
}
.fe-text__actions { display: flex; gap: 8px; }
.fe-text__save,
.fe-text__cancel {
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}
.fe-text__save { background: #e31c23; color: #fff; }
.fe-text__cancel { background: #2a2e36; color: #fff; }
.fe-text__hint { font-size: 11px; color: #aaa; margin-top: 6px; }
.fe-text__hint code { color: #ffb4b7; }
.fe-link-hint {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255,255,255,.75);
    background: rgba(0,0,0,.25);
    padding: 4px 8px;
    border-radius: 4px;
}
.fe-menu-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 4px 8px 8px;
    background: #1a1d23;
}
.fe-menu-tools--child { padding-left: 16px; }
.fe-menu-tools .fe-text__display > :not(.fe-text__toggle) { display: none; }
.nav__dropdown li { position: relative; }
.hero__actions {
    display: flex; flex-wrap: wrap; gap: 10px;
    align-items: flex-start; justify-content: flex-start;
    text-align: left;
}
.hero__actions .btn { margin: 0; }
.frontend-flash {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 1300;
    background: #14351f;
    color: #7ddea0;
    border: 1px solid #1f6b3a;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    animation: flashOut 4s forwards;
}
@keyframes flashOut {
    0%, 70% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}
.fe-edit {
    position: relative;
    display: block;
}
.fe-edit__form {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
}
.fe-edit__form--float {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
}
.fe-edit__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e31c23;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.fe-edit__btn:hover { background: #ff3b42; }
.fe-edit__size {
    display: block;
    font-size: 10px;
    font-weight: 600;
    opacity: .9;
    margin-top: 2px;
}
.page-gallery__item--empty small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #e31c23;
    font-weight: 700;
}
.fe-edit--banner .page-banner,
.fe-edit--section,
.fe-edit--portfolio,
.fe-edit--client { position: relative; }
.fe-edit--gallery { flex: 0 0 280px; }
.page-gallery__item--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    background: #1a1d23;
    color: #fff;
    border: 2px dashed #e31c23;
    border-radius: var(--radius);
    font-weight: 600;
}
.page-section__grid .fe-edit--section { min-width: 0; }
