/* ==========================================================================
   Pak Contract — Main Stylesheet
   Lightweight, RTL, Arabic (Kuwait)
   ========================================================================== */

:root {
    --color-primary: #c8922a;
    --color-primary-light: #e8b44a;
    --color-primary-dark: #9a6f1a;
    --color-accent: #1a6b5a;
    --color-accent-light: #2a9d82;
    --color-bg: #faf8f5;
    --color-bg-dark: #0f1419;
    --color-surface: #ffffff;
    --color-text: #1a1f2e;
    --color-text-muted: #5a6478;
    --color-border: rgba(26, 31, 46, 0.08);
    --font-arabic: 'Noto Sans Arabic', 'Segoe UI', Tahoma, sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-arabic);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

body.rtl {
    direction: rtl;
}

body.ltr {
    direction: ltr;
    text-align: left;
    font-family: 'Inter', 'Noto Sans Arabic', 'Segoe UI', sans-serif;
}

body.ltr .section-header {
    text-align: center;
}

body.ltr .main-nav a::after {
    right: auto;
    left: 0;
    transform-origin: left;
}

body.ltr .service-card::before {
    transform-origin: left;
}

body.ltr .timeline-track {
    right: auto;
    left: 69px;
}

body.ltr .step-number {
    left: auto;
    right: -8px;
}

body.ltr .step-icon-wrap {
    left: auto;
    right: -12px;
}

body.ltr .service-icon {
    right: auto;
    left: 12px;
}

body.ltr .info-card:hover {
    transform: translateX(4px);
}

body.ltr .whatsapp-float {
    left: auto;
    right: 28px;
}

body.ltr .hero-showcase-main {
    margin-right: 0;
    margin-left: auto;
}

body.ltr .hero-showcase-stack {
    left: auto;
    right: 0;
}

body.ltr .stack-2 {
    margin-right: 0;
    margin-left: auto;
}

body.ltr .why-mini-video {
    left: auto;
    right: -30px;
}

body.ltr .lightbox-close {
    left: auto;
    right: 0;
}

body.ltr .fc-1 {
    right: auto;
    left: 0;
}

body.ltr .fc-2 {
    right: auto;
    left: 10%;
}

body.ltr .fc-3 {
    left: auto;
    right: 0;
}

body.ltr .hero-play-btn i,
body.ltr .hero-play-btn svg {
    margin-right: 0;
    margin-left: -3px;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.accent {
    color: var(--color-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-arabic);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn i, .btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    box-shadow: 0 4px 20px rgba(200, 146, 42, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 146, 42, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

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

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: all var(--transition);
}

.site-header:not(.scrolled) .logo-text strong,
.site-header:not(.scrolled) .main-nav a {
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.site-header:not(.scrolled) .logo-text small {
    color: rgba(255, 255, 255, 0.75);
}

.site-header:not(.scrolled) .nav-toggle span {
    background: #fff;
}

.site-header:not(.scrolled) .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.site-header.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
}

.site-header.scrolled .logo-text strong,
.site-header.scrolled .main-nav a {
    color: var(--color-text-muted);
    text-shadow: none;
}

.site-header.scrolled .logo-text small {
    color: var(--color-text-muted);
}

.site-header.scrolled .nav-toggle span {
    background: var(--color-text);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    color: var(--color-primary);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-text);
}

.logo-text small {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 4px;
    gap: 2px;
}

/* Fixed bottom-corner language switcher */
.lang-switcher-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
}

.lang-switcher-float .lang-btn {
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
    transition: all var(--transition);
    min-width: 52px;
    text-align: center;
}

.lang-switcher-float .lang-btn:hover {
    color: var(--color-primary);
    background: rgba(200, 146, 42, 0.08);
}

.lang-switcher-float .lang-btn.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    box-shadow: 0 4px 16px rgba(200, 146, 42, 0.35);
}

body.ltr .lang-switcher-float {
    right: auto;
    left: 28px;
}

.site-header.scrolled .lang-switcher {
    background: var(--color-bg);
    border-color: var(--color-border);
}

.lang-btn {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    transition: all var(--transition);
    letter-spacing: 0.3px;
}

.site-header.scrolled .lang-btn {
    color: var(--color-text-muted);
}

.lang-btn:hover {
    color: var(--color-primary-light);
}

.site-header.scrolled .lang-btn:hover {
    color: var(--color-primary);
}

.lang-btn.active {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(200, 146, 42, 0.35);
}

.main-nav ul {
    display: flex;
    gap: 28px;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.main-nav a:hover {
    color: var(--color-primary);
}

.main-nav a:hover::after {
    width: 100%;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 40px) 0 80px;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #0f1419;
}

.hero-preview-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #1a1f2e;
}

.hero-showcase-main:hover .hero-preview-video {
    transform: scale(1.05);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(15, 20, 25, 0.75) 0%, rgba(15, 20, 25, 0.45) 45%, rgba(15, 20, 25, 0.3) 100%),
        linear-gradient(0deg, rgba(15, 20, 25, 0.5) 0%, transparent 40%);
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.35;
    pointer-events: none;
}

.hero-gradient {
    display: none;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(200, 146, 42, 0.2);
    border: 1px solid rgba(200, 146, 42, 0.4);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-primary-light);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-badge i, .hero-badge svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary-light);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #fff;
}

.hero-title .accent {
    color: var(--color-primary-light);
}

.title-line {
    display: block;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-card {
    /* background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px); */
    /* padding: 20px 28px; */
    /* border-radius: var(--radius-md); */
    /* box-shadow: var(--shadow-sm); */
    /* border: 1px solid rgba(255, 255, 255, 0.15); */
    /* min-width: 140px; */
    transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary-light);
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-light);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero-scroll i, .hero-scroll svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-showcase {
    position: relative;
    height: 480px;
}

.hero-showcase-main {
    position: relative;
    width: 78%;
    height: 340px;
    margin-right: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.15);
    animation: floatCard 5s ease-in-out infinite;
}

.hero-showcase-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-showcase-main:hover img {
    transform: scale(1.05);
}

.hero-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: none;
    background: rgba(200, 146, 42, 0.92);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    transition: all var(--transition);
}

.hero-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-primary);
}

.hero-play-btn i, .hero-play-btn svg {
    width: 28px;
    height: 28px;
    margin-right: -3px;
}

.hero-showcase-stack {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stack-img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
}

.stack-1 { animation: floatCard 4s ease-in-out infinite 0.5s; }
.stack-2 { animation: floatCard 4.5s ease-in-out infinite 1s; width: 85%; margin-right: auto; }

/* Gallery Strip */
.gallery-strip {
    padding: 0;
    overflow: hidden;
    background: var(--color-bg-dark);
    -webkit-mask-image: linear-gradient(to right, #000 0%, #000 88%, transparent 100%);
    mask-image: linear-gradient(to right, #000 0%, #000 88%, transparent 100%);
}

.gallery-track {
    display: flex;
    flex-direction: row;
    direction: ltr;
    gap: 16px;
    padding: 20px 0;
    animation: marquee-left-to-right 40s linear infinite;
    width: max-content;
    will-change: transform;
}

.gallery-item {
    flex-shrink: 0;
    width: 280px;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Images exit right, enter sharply from left */
@keyframes marquee-left-to-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Section Common */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(200, 146, 42, 0.1);
    color: var(--color-primary-dark);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.3;
}

.section-desc {
    color: var(--color-text-muted);
    margin: 16px auto 0;
    font-size: 1.05rem;
}

/* Story Timeline */
.story {
    background: var(--color-surface);
}

.story-timeline {
    position: relative;
    margin: 0 auto;
}

.timeline-track {
    position: absolute;
    top: 0;
    right: 69px;
    width: 3px;
    height: 100%;
    background: var(--color-border);
    border-radius: 3px;
}

.timeline-progress {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
    border-radius: 3px;
    transition: height 0.1s linear;
}

.story-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.story-step:last-child {
    margin-bottom: 0;
}

.step-visual {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-image {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.story-step:hover .step-image img {
    transform: scale(1.08);
}

.step-icon-wrap {
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 56px;
    height: 56px;
    background: var(--color-surface);
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition);
    z-index: 2;
}

.story-step:hover .step-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.step-icon-wrap i, .step-icon-wrap svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Services */
.services {
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 80% 50%, rgba(26, 107, 90, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--color-surface);
    padding: 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    transform-style: preserve-3d;
    perspective: 800px;
    position: relative;
    overflow: hidden;
}

.service-media {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #1a1f2e;
}

.service-media img,
.service-poster,
.service-media .service-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.service-poster {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.service-video {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
}

.service-card.is-playing .service-video,
.service-card:hover .service-video {
    opacity: 1;
}

.service-card.is-playing .service-poster,
.service-card:hover .service-poster {
    opacity: 0;
}

.service-card:hover .service-poster {
    transform: scale(1.05);
}

.service-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: rgba(200, 146, 42, 0.92);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    opacity: 0;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.service-card:hover .service-play-btn,
.service-video-card:hover .service-play-btn {
    opacity: 1;
}

.service-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.service-play-btn i, .service-play-btn svg {
    width: 22px;
    height: 22px;
    margin-right: -2px;
}

.hero-media-label {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 3;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

body.ltr .hero-media-label {
    right: auto;
    left: 12px;
}

/* Service videos grid */
.service-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.service-video-card {
    position: relative;
    height: 160px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.service-video-card img,
.service-video-card .service-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-video-card .service-video-thumb {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
}

.service-video-card.is-playing .service-video-thumb {
    opacity: 1;
}

.service-video-card.is-playing img {
    opacity: 0;
}

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

.service-video-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 12px;
    gap: 6px;
    color: #fff;
    z-index: 2;
}

.service-video-card-overlay i,
.service-video-card-overlay svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary-light);
}

.service-video-card-overlay span {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.service-video-card .service-play-btn {
    opacity: 1;
    width: 40px;
    height: 40px;
    top: 40%;
}

/* Gallery labels */
.gallery-item {
    position: relative;
}

.gallery-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

/* Gallery Section — Pinterest-style masonry */
.gallery-section {
    position: relative;
    overflow: hidden;
    background: #0c0f14;
    padding: 100px 0;
}

.gallery-section-header .section-tag {
    background: rgba(200, 146, 42, 0.18);
    color: var(--color-primary-light);
}

.gallery-section-header h2 {
    color: #fff;
}

.gallery-section-header .section-desc {
    color: rgba(255, 255, 255, 0.68);
    margin-left: auto;
    margin-right: auto;
}

.gallery-masonry {
    column-count: 4;
    column-gap: 16px;
}

.gallery-pin {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 16px;
    display: inline-block;
    width: 100%;
}

.gallery-pin-btn {
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    text-align: inherit;
    font-family: inherit;
    color: inherit;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
    transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-pin-btn:hover,
.gallery-pin-btn:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
    outline: none;
}

.gallery-pin-media {
    position: relative;
    overflow: hidden;
    background: #1a1f2e;
    line-height: 0;
}

.gallery-pin-media img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.55s ease;
}

.gallery-pin-btn:hover .gallery-pin-media img {
    transform: scale(1.03);
}

.gallery-pin-meta {
    padding: 12px 14px 14px;
    background: #fff;
    text-align: start;
}

.gallery-pin-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1a1f2e;
    line-height: 1.45;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-pin-source {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #6b7280;
}

.gallery-pin-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gallery-pin-icon svg {
    width: 12px;
    height: 12px;
}

.gallery-pin-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Image Lightbox */
.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.image-lightbox[hidden] {
    display: none;
}

.image-lightbox-content {
    position: relative;
    width: 100%;
}

.image-lightbox-content img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    background: #111;
    display: block;
}

.image-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    z-index: 2;
    backdrop-filter: blur(6px);
}

.image-lightbox-nav:hover {
    background: rgba(200, 146, 42, 0.85);
    transform: translateY(-50%) scale(1.05);
}

.image-lightbox-nav i, .image-lightbox-nav svg {
    width: 24px;
    height: 24px;
}

.image-lightbox-prev {
    right: -64px;
}

.image-lightbox-next {
    left: -64px;
}

body.ltr .image-lightbox-prev {
    right: auto;
    left: -64px;
}

body.ltr .image-lightbox-next {
    left: auto;
    right: -64px;
}

.image-lightbox-caption {
    margin-top: 14px;
    text-align: center;
    color: #fff;
}

.image-lightbox-caption strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.image-lightbox-counter {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Showcase thumbs */
.showcase-thumb {
    border: none;
    padding: 0;
    background: none;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform var(--transition);
}

.showcase-thumb img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    display: block;
}

.showcase-thumb span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4px 6px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    text-align: center;
}

.showcase-thumb:hover,
.showcase-thumb.active {
    transform: scale(1.05);
    outline: 2px solid var(--color-primary);
}

.portfolio-tags {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 2;
}

body.ltr .portfolio-tags {
    right: auto;
    left: 12px;
}

.portfolio-tag {
    padding: 4px 10px;
    background: rgba(200, 146, 42, 0.92);
    color: #fff;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
}

.service-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.service-body {
    padding: 24px 28px 32px;
}

.service-icon i, .service-icon svg {
    width: 26px;
    height: 26px;
    color: var(--color-primary);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

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

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

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(200, 146, 42, 0.08);
    color: var(--color-primary-dark);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Video Showcase */
.showcase {
    background: var(--color-surface);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.showcase-video-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.showcase-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: var(--color-bg-dark);
}

.showcase-video-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.showcase-video-badge i, .showcase-video-badge svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary-light);
}

.showcase-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}

.showcase-content p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.showcase-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.showcase-thumbs img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid var(--color-border);
    transition: transform var(--transition);
}

.showcase-thumbs img:hover {
    transform: scale(1.05);
}

/* Portfolio */
.portfolio-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.portfolio-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    transform-style: preserve-3d;
}

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

.portfolio-visual {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.portfolio-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-visual img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.portfolio-overlay i, .portfolio-overlay svg {
    width: 32px;
    height: 32px;
}

.portfolio-info {
    padding: 20px 24px;
}

.portfolio-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.portfolio-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Why Us */
.why-us {
    background: var(--color-bg-dark);
    color: #fff;
    overflow: hidden;
}

.why-us .section-tag {
    background: rgba(200, 146, 42, 0.2);
    color: var(--color-primary-light);
}

.why-us h2 .accent {
    color: var(--color-primary-light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-us-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0 32px;
    line-height: 1.8;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.why-list i, .why-list svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary-light);
    flex-shrink: 0;
}

.why-us-visual {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-media-stack {
    position: relative;
    width: 100%;
}

.why-main-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.why-mini-video {
    position: absolute;
    bottom: -20px;
    left: -30px;
    width: 160px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 3px solid var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i, .floating-card svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary-light);
}

.fc-1 { top: 10%; right: 0; animation-delay: 0s; }
.fc-2 { bottom: 20%; right: 10%; animation-delay: 1s; }
.fc-3 { top: 40%; left: 0; animation-delay: 2s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Contact */
.contact {
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 70%, rgba(200, 146, 42, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
}

.contact-map-frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-map-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 14px 16px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.contact-map-address {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-text);
}

.contact-map-address i, .contact-map-address svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-map-btn {
    white-space: nowrap;
}

.contact-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 200px;
    box-shadow: var(--shadow-md);
}

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

.contact-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 16px;
    color: #fff;
    font-weight: 600;
}

.contact-image-overlay i, .contact-image-overlay svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary-light);
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: transform var(--transition);
}

.info-card:hover {
    transform: translateX(-4px);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 146, 42, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i, .info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
}

.info-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.info-card p, .info-card a {
    font-weight: 600;
    color: var(--color-text);
}

.info-card a:hover {
    color: var(--color-primary);
}

.form-card {
    background: var(--color-surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.form-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 28px;
}

/* Contact Form 7 Styling */
.wpcf7 form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wpcf7 label,
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea,
.fallback-form input,
.fallback-form select,
.fallback-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-arabic);
    font-size: 1rem;
    background: var(--color-bg);
    color: var(--color-text);
    transition: border-color var(--transition);
    direction: rtl;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus,
.fallback-form input:focus,
.fallback-form select:focus,
.fallback-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.wpcf7 textarea,
.fallback-form textarea {
    resize: vertical;
    min-height: 120px;
}

.wpcf7 input[type="submit"],
.wpcf7 button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-arabic);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.wpcf7 input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 146, 42, 0.35);
}

.wpcf7-response-output {
    margin: 16px 0 0 !important;
    padding: 12px 16px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 0.9rem;
}

.wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 4px;
}

.cf7-placeholder {
    color: var(--color-text-muted);
}

.cf7-placeholder code {
    background: rgba(200, 146, 42, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.form-group {
    margin-bottom: 0;
}

/* Footer */
.site-footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 0 32px;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-brand .logo-text strong {
    color: #fff;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary-light);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contact i, .footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary-light);
}

.footer-contact a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: #fff;
}

.footer-social i, .footer-social svg {
    width: 18px;
    height: 18px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
    animation: pulseWhatsApp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1fb855;
}

.whatsapp-float i, .whatsapp-float svg {
    width: 28px;
    height: 28px;
}

@keyframes pulseWhatsApp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Video Lightbox */
.video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.video-lightbox[hidden] {
    display: none;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    width: 100%;
    z-index: 1;
}

.lightbox-content video {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: -48px;
    left: 0;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.lightbox-close:hover {
    background: var(--color-primary);
}

.lightbox-close i, .lightbox-close svg {
    width: 22px;
    height: 22px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-showcase {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-showcase-main {
        position: relative;
        width: 100%;
        height: clamp(220px, 48vw, 320px);
        margin: 0;
        animation: none;
    }

    .hero-showcase-stack {
        position: static;
        width: 100%;
        flex-direction: row;
        gap: 12px;
    }

    .stack-img {
        flex: 1;
        width: auto;
        height: 96px;
        animation: none;
    }

    .stack-2 {
        width: auto;
        margin: 0;
    }

    body.ltr .hero-showcase-main {
        margin-left: 0;
        margin-right: 0;
    }

    body.ltr .stack-2 {
        margin-left: 0;
        margin-right: 0;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-us-visual {
        height: 300px;
    }

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

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

    .gallery-masonry {
        column-count: 3;
        column-gap: 14px;
    }

    .gallery-pin {
        margin-bottom: 14px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .container {
        padding: 0 20px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    body.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(15, 20, 25, 0.5);
        z-index: 999;
        backdrop-filter: blur(2px);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        width: min(85%, 320px);
        height: 100vh;
        height: 100dvh;
        background: var(--color-surface);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        padding: 40px 28px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        z-index: 1000;
        overflow-y: auto;
    }

    body.ltr .main-nav {
        right: auto;
        left: -100%;
        transition: left var(--transition);
    }

    .main-nav.open {
        right: 0;
    }

    body.ltr .main-nav.open {
        right: auto;
        left: 0;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .logo-text strong {
        font-size: 1rem;
    }

    .logo-text small {
        font-size: 0.65rem;
    }

    .lang-switcher-float {
        bottom: 20px;
        right: 14px;
        padding: 4px;
    }

    .lang-switcher-float .lang-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: 44px;
    }

    body.ltr .lang-switcher-float {
        right: auto;
        left: 14px;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 14px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float i, .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    body.ltr .whatsapp-float {
        left: auto;
        right: 14px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        width: 100%;
    }

    .main-nav a {
        font-size: 1.05rem;
        display: block;
        padding: 4px 0;
    }

    .main-nav .btn {
        width: 100%;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 28px) 0 56px;
        align-items: flex-start;
    }

    .hero-scroll {
        display: none;
    }

    #hero-canvas {
        opacity: 0.2;
    }

    .hero-title {
        font-size: clamp(1.85rem, 8vw, 2.75rem);
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
        line-height: 1.75;
    }

    .hero-cta {
        margin-bottom: 32px;
        gap: 12px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
    }

    .stat-card {
        min-width: 0;
        width: auto;
        padding: 14px 10px;
        text-align: center;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-suffix {
        font-size: 1.15rem;
    }

    .stat-label {
        font-size: 0.72rem;
        line-height: 1.4;
    }

    .hero-showcase-main {
        height: clamp(200px, 56vw, 260px);
    }

    .hero-play-btn {
        width: 56px;
        height: 56px;
    }

    .hero-play-btn i, .hero-play-btn svg {
        width: 22px;
        height: 22px;
    }

    .hero-media-label {
        font-size: 0.72rem;
        padding: 5px 10px;
        max-width: calc(100% - 24px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .stack-img {
        height: 72px;
    }

    .gallery-item {
        width: 220px;
        height: 150px;
    }

    .gallery-section {
        padding: 72px 0;
    }

    .gallery-masonry {
        column-count: 2;
        column-gap: 12px;
    }

    .gallery-pin {
        margin-bottom: 12px;
    }

    .gallery-pin-btn {
        border-radius: 14px;
    }

    .image-lightbox-prev {
        right: 8px;
    }

    .image-lightbox-next {
        left: 8px;
    }

    body.ltr .image-lightbox-prev {
        left: 8px;
        right: auto;
    }

    body.ltr .image-lightbox-next {
        right: 8px;
        left: auto;
    }

    .showcase-thumbs {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .showcase-thumbs img {
        height: 64px;
    }

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

    .service-videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-video-card {
        height: 130px;
    }

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

    .story-step {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        margin-bottom: 24px;
        padding: 20px;
        text-align: inherit;
        background: var(--color-bg);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .story-step:last-child {
        margin-bottom: 0;
    }

    .step-visual {
        width: 100%;
    }

    .step-image {
        width: 100%;
        max-width: none;
        height: 200px;
    }

    .step-icon-wrap {
        bottom: -10px;
        left: 16px;
        width: 48px;
        height: 48px;
    }

    body.ltr .step-icon-wrap {
        left: 16px;
        right: auto;
    }

    body.rtl .step-icon-wrap {
        left: auto;
        right: 16px;
    }

    .step-number {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    body.ltr .step-number {
        right: 12px;
        left: auto;
    }

    body.rtl .step-number {
        right: auto;
        left: 12px;
    }

    .step-content {
        width: 100%;
        padding: 0 4px;
    }

    .step-content h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .step-content p {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .timeline-track {
        display: none;
    }

    .site-header:not(.scrolled) .main-nav a {
        color: var(--color-text-muted);
        text-shadow: none;
    }

    .site-header:not(.scrolled) .logo-text strong {
        color: var(--color-text);
        text-shadow: none;
    }

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

    .section-header h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .form-card {
        padding: 28px 20px;
    }

    .why-us-visual {
        height: 260px;
    }

    section {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .hero {
        padding: calc(var(--header-height) + 20px) 0 40px;
    }

    .hero-badge {
        font-size: 0.82rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: clamp(1.65rem, 9vw, 2.2rem);
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-card {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        justify-content: center;
        gap: 4px 6px;
        padding: 16px;
    }

    .stat-label {
        width: 100%;
        font-size: 0.8rem;
    }

    .hero-showcase {
        gap: 10px;
    }

    .hero-showcase-main {
        height: clamp(180px, 58vw, 220px);
        border-width: 2px;
    }

    .hero-showcase-stack {
        gap: 8px;
    }

    .stack-img {
        height: 64px;
    }

    .gallery-masonry {
        column-count: 1;
        column-gap: 10px;
    }

    .gallery-pin-title {
        font-size: 0.88rem;
    }

    .image-lightbox-nav {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 88px;
        transform: none;
    }

    .image-lightbox-nav:hover {
        transform: scale(1.05);
    }

    .image-lightbox {
        padding: 16px;
    }

    .image-lightbox-content img {
        max-height: 65vh;
    }

    .gallery-item {
        width: 180px;
        height: 120px;
    }

    .gallery-track {
        gap: 10px;
        padding: 14px 0;
    }

    .service-videos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-video-card {
        height: 110px;
    }

    .showcase-content h2 {
        font-size: 1.45rem;
    }

    .step-image {
        height: 180px;
    }

    .story-step {
        padding: 16px;
        gap: 16px;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .info-card {
        padding: 16px;
    }

    .contact-map {
        height: 240px;
    }

    .contact-map-meta {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-map-btn {
        width: 100%;
        justify-content: center;
    }

    .form-card {
        padding: 24px 16px;
    }

    .lang-switcher-float {
        bottom: 16px;
        right: 12px;
    }

    body.ltr .lang-switcher-float {
        left: 12px;
    }

    .whatsapp-float {
        bottom: 16px;
        left: 12px;
        width: 48px;
        height: 48px;
    }

    body.ltr .whatsapp-float {
        right: 12px;
    }

    section {
        padding: 56px 0;
    }

    .hero-3d-shapes .shape-cube,
    .hero-3d-shapes .shape-ring {
        display: none;
    }
}

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

    .service-videos-grid {
        grid-template-columns: 1fr;
    }

    .logo-text small {
        display: none;
    }
}

/* ── WordPress pages (Privacy, Terms, etc.) ── */
.site-page {
    padding: 120px 0 80px;
    min-height: 60vh;
}

.page-article {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 36px;
    backdrop-filter: blur(12px);
}

.page-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 24px;
    line-height: 1.25;
}

.page-content {
    color: var(--text-muted, #c8cdd8);
    line-height: 1.8;
    font-size: 1rem;
}

.page-content h2,
.page-content h3 {
    color: var(--text, #f5f5f5);
    margin: 1.75em 0 0.75em;
    line-height: 1.35;
}

.page-content p,
.page-content ul,
.page-content ol {
    margin-bottom: 1em;
}

.page-content ul,
.page-content ol {
    padding-inline-start: 1.25em;
}

.page-content a {
    color: var(--accent, #c9a227);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 640px) {
    .site-page {
        padding: 100px 0 56px;
    }

    .page-article {
        padding: 28px 20px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
