@import 'tailwindcss';
@source '../views/**/*.blade.php';
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';

:root {
    --page: #080c14;
    --surface: #0f172a;
    --soft: #1e293b;
    --ink: #f8fafc;
    --muted: #94a3b8;
    --line: #1e293b;
    --accent: #f59e0b;
    --accent-ink: #d97706;
    --color-brand-blue: #0284c7;

    --color-slate-950: #080c14;
    --color-slate-900: #0f172a;
    --color-slate-800: #1e293b;
    --color-slate-700: #334155;
    --color-slate-600: #475569;
    --color-slate-500: #64748b;
    --color-slate-400: #94a3b8;
    --color-slate-300: #cbd5e1;
    --color-slate-200: #e2e8f0;
    --color-slate-100: #f8fafc;
    --color-slate-50: #ffffff;
}
:root[data-theme="light"],
[data-theme="light"] {
    --page: #f8fafc;
    --surface: #ffffff;
    --soft: #f1f5f9;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --accent: #f59e0b;
    --accent-ink: #b45309;
    --color-brand-blue: #0284c7;

    --color-slate-950: #f8fafc;
    --color-slate-900: #ffffff;
    --color-slate-800: #f1f5f9;
    --color-slate-700: #e2e8f0;
    --color-slate-600: #cbd5e1;
    --color-slate-500: #64748b;
    --color-slate-400: #475569;
    --color-slate-300: #334155;
    --color-slate-200: #1e293b;
    --color-slate-100: #0f172a;
    --color-slate-50: #020617;
}
:root[data-theme="dark"],
[data-theme="dark"] {
    --page: #080c14;
    --surface: #0f172a;
    --soft: #1e293b;
    --ink: #f8fafc;
    --muted: #94a3b8;
    --line: #1e293b;
    --accent: #fbbf24;
    --accent-ink: #f59e0b;
    --color-brand-blue: #38bdf8;

    --color-slate-950: #080c14;
    --color-slate-900: #0f172a;
    --color-slate-800: #1e293b;
    --color-slate-700: #334155;
    --color-slate-600: #475569;
    --color-slate-500: #64748b;
    --color-slate-400: #94a3b8;
    --color-slate-300: #cbd5e1;
    --color-slate-200: #e2e8f0;
    --color-slate-100: #f8fafc;
    --color-slate-50: #ffffff;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    background: var(--page);
    color: var(--ink);
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    letter-spacing: -0.025em;
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}
[dir="rtl"] body { font-family: Tajawal, Arial, sans-serif; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { text-decoration: none; }
button, a { transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s, transform .15s; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
[x-cloak] { display: none !important; }
.site-container { width: min(1240px, calc(100% - 80px)); margin-inline: auto; }
.utility-bar { background: #0b0f19; color: #cbd5e1; font-size: 11px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.site-header { background: var(--surface); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; backdrop-filter: blur(12px); }
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 900; line-height: 1.25; letter-spacing: -0.01em; color: var(--ink); }
.brand small { display: block; font-size: 9px; font-weight: 700; letter-spacing: .24em; color: var(--muted); margin-top: 3px; }
.brand-mark { background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%); color: #0f172a; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25); }
.brand-mark svg { width: 28px; height: 28px; }
.desktop-nav { display: flex; gap: 24px; font-size: 13px; font-weight: 600; }
.desktop-nav a { padding: 30px 0; color: var(--muted); position: relative; transition: color .2s; }
.desktop-nav a.active, .desktop-nav a:hover { color: var(--ink); font-weight: 700; }
.desktop-nav a.active::after { content: ""; height: 3px; background: var(--accent); position: absolute; bottom: 0; inset-inline: 0; border-radius: 3px 3px 0 0; }
.header-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    transition: all 0.2s ease;
    border: 1px solid var(--line);
    background: var(--soft);
    color: var(--ink);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.header-login-btn:hover {
    background: var(--surface);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 12px 22px; border-radius: 12px; font-size: 12px; font-weight: 800; line-height: 1.5; min-height: 44px; border: 1px solid transparent; }
.button span { font-size: 16px; line-height: 1; }
.button-primary { background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%); color: #0f172a; box-shadow: 0 4px 14px rgba(245, 158, 11, 0.25); }
.button-primary:hover { background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35); }
.button-dark { background: #0f172a; color: #fff; border: 1px solid #1e293b; }
.button-dark:hover { background: #1e293b; }
.button-glass { background:#ffffff09; color:white; border-color:#ffffff55; backdrop-filter:blur(8px); }
.button-glass:hover { background:#ffffff20; }
.icon-button { width:42px; height:42px; display:inline-flex; align-items:center; justify-content:center; border:1px solid var(--line); border-radius:50%; color:var(--ink); background:var(--surface); flex-shrink:0; }
.icon-button:hover { background:var(--soft); }
.theme-sun { display:none; }
[data-theme="dark"] .theme-moon { display:none; }
[data-theme="dark"] .theme-sun { display:block; }
.mobile-menu-button,.mobile-nav { display:none; }
.hero { position:relative; background:#222b23; color:#fff; min-height:650px; display:flex; align-items:center; overflow:hidden; }
.hero-photo,.hero-shade { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero-shade { background:linear-gradient(90deg,rgba(8,17,13,.91),rgba(8,17,13,.28) 75%),linear-gradient(rgba(0,0,0,var(--hero-opacity)),rgba(0,0,0,.06)); }
.hero-content { position:relative; z-index:1; padding-block:95px 100px; }
.eyebrow { display:block; font-size:10px; font-weight:800; letter-spacing:.18em; line-height:1.8; }
.hero .eyebrow { display:flex; align-items:center; gap:12px; color:#f1d292; }
.status-dot { width:7px; height:7px; border-radius:50%; background:var(--accent); box-shadow:0 0 0 5px #edba5420; }
.hero h1 { max-width:650px; font-size:clamp(44px,5.5vw,78px); line-height:1.09; font-weight:700; letter-spacing:-.055em; margin:24px 0; text-wrap:balance; }
.hero p { color:#dce1d8; max-width:460px; font-size:15px; line-height:1.9; margin:0 0 33px; }
.hero-location { display:flex; align-items:center; gap:14px; font-size:8px; letter-spacing:.12em; color:#c7d0c3; margin-top:58px; }
.hero-location>span:first-child { color:var(--accent); font-weight:800; }
.hero-location-line { width:35px; height:1px; background:#ffffff44; }
.hero-caption { position:absolute; bottom:34px; right:40px; display:flex; flex-direction:column; font-size:8px; letter-spacing:.14em; gap:4px; text-align:right; color:#dce1d8; }
.hero-caption span:last-child { font-size:10px; letter-spacing:0; }
.trust-strip { background:var(--surface); border-bottom:1px solid var(--line); }
.trust-strip .site-container>div { padding:27px 30px; position:relative; border-inline-end:1px solid var(--line); display:grid; grid-template-columns:30px 1fr; column-gap:12px; }
.trust-strip .site-container>div:first-child { padding-inline-start:0; }
.trust-strip .site-container>div:last-child { border:0; }
.trust-strip span { grid-row:span 2; color:var(--accent-ink); font-size:12px; padding-top:3px; }
.trust-strip strong { font-size:13px; }
.trust-strip small { font-size:11px; color:var(--muted); }
.section-space { padding-block:88px; }
.section-heading { display:flex; align-items:end; justify-content:space-between; gap:32px; margin-bottom:36px; }
h2 { font-size:clamp(27px,3.3vw,43px); font-weight:600; line-height:1.2; letter-spacing:-.045em; }
.section-heading h2,.workshop-copy h2 { margin-top:12px; }
.section-heading p { color:var(--muted); font-size:13px; margin:0 0 14px; }
.accent { color:var(--accent-ink); }
.muted { color:var(--muted); }
.text-link { display:inline-flex; align-items:center; gap:24px; font-size:12px; font-weight:700; border-bottom:1px solid var(--line); padding-bottom:5px; }
.text-link:hover { color:var(--accent-ink); }
.service-card { background:var(--surface); border:1px solid var(--line); border-radius:10px; overflow:hidden; display:flex; flex-direction:column; transition:transform .25s,box-shadow .25s; }
.service-card:hover { transform:translateY(-4px); box-shadow:0 16px 35px #1523130b; }
.service-image { position:relative; display:block; overflow:hidden; aspect-ratio:1.65; background:var(--soft); }
.service-image img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.service-card:hover .service-image img { transform:scale(1.04); }
.service-image>span { position:absolute; bottom:14px; left:16px; background:#182119dc; color:#fff; border:1px solid #ffffff30; border-radius:4px; padding:5px 9px; font-size:8px; font-weight:600; letter-spacing:.03em; backdrop-filter:blur(5px); }
.service-card-body { padding:24px; display:flex; flex-direction:column; flex:1; }
.service-card h3 { font-size:18px; font-weight:700; line-height:1.4; letter-spacing:-.025em; margin-bottom:10px; }
.service-card p { font-size:12px; color:var(--muted); line-height:1.85; margin-bottom:22px; }
.service-card-bottom { border-top:1px solid var(--line); padding-top:17px; margin-top:auto; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.service-card-bottom small { display:block; font-size:9px; color:var(--muted); }
.service-card-bottom strong { font-size:14px; }
.round-link { width:36px; height:36px; border-radius:50%; border:1px solid var(--line); display:grid; place-items:center; font-size:18px; }
.round-link:hover { background:var(--accent); color:#222b23; }
.workshop-section { background:var(--soft); border-block:1px solid var(--line); }
.workshop-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.workshop-image { position:relative; height:480px; border-radius:10px; overflow:hidden; }
.workshop-image img { width:100%; height:100%; object-fit:cover; }
.workshop-image>span { position:absolute; bottom:24px; left:24px; background:#172219e6; color:#fff; padding:16px 21px; border-left:3px solid var(--accent); font-size:10px; font-weight:600; letter-spacing:.1em; }
.workshop-copy>p { color:var(--muted); font-size:13px; margin:24px 0; }
.value-line { display:flex; gap:16px; margin-block:18px; }
.value-line>span { color:var(--accent-ink); font-size:16px; }
.value-line h3 { font-size:13px; font-weight:700; }
.value-line p { font-size:11px; color:var(--muted); margin-top:3px; }
.workshop-copy .text-link { margin-top:17px; }
.process-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:44px; }
.process-grid article { border-top:1px solid var(--line); padding-top:24px; }
.process-number { color:var(--accent-ink); font-size:12px; font-weight:700; }
.process-grid h3 { font-size:18px; font-weight:600; margin:20px 0 10px; }
.process-grid p { color:var(--muted); font-size:13px; }
.cta-panel { background:#e8b85c; color:#24291f; border-radius:12px; padding:50px 60px; display:flex; justify-content:space-between; align-items:center; gap:30px; margin-bottom:85px; }
.cta-panel h2 { margin-top:16px; }
.cta-panel p { font-size:13px; margin-bottom:22px; }
.site-footer { background:var(--surface); border-top:1px solid var(--line); }
.footer-grid { padding-block:60px; display:grid; grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:40px; }
.footer-grid .brand { display:block; font-size:15px; }
.footer-grid .brand span { display:block; font-size:11px; margin-top:4px; }
.footer-grid h3 { font-size:11px; font-weight:700; margin-bottom:18px; }
.footer-grid p,.footer-grid>div>a:not(.brand) { display:block; font-size:11px; color:var(--muted); line-height:1.9; margin-block:9px; }
.footer-grid>div>p { margin-top:19px; }
.footer-bottom { border-top:1px solid var(--line); padding-block:22px; display:flex; justify-content:space-between; gap:20px; font-size:10px; color:var(--muted); }
.page-heading { padding-block:65px 40px; }
.page-heading h1 { font-size:clamp(32px,5vw,58px); line-height:1.15; letter-spacing:-.045em; font-weight:650; margin-block:15px; }
.page-heading p { color:var(--muted); font-size:14px; max-width:680px; }
.filter-tabs { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:32px; }
.filter-tab { padding:10px 15px; border:1px solid var(--line); border-radius:6px; font-size:11px; background:var(--surface); }
.filter-tab.selected { background:var(--ink); color:var(--surface); border-color:var(--ink); }
.empty-state { padding:55px 25px; border:1px dashed var(--line); border-radius:10px; text-align:center; background:var(--surface); }
.empty-state h2 { font-size:26px; margin-block:15px; }
.empty-state p { color:var(--muted); margin-bottom:22px; font-size:13px; }
.field { display:flex; flex-direction:column; gap:8px; margin-bottom:20px; }
.field>label { font-size:12px; font-weight:700; }
.field input:not([type="checkbox"]),.field select,.field textarea { width:100%; padding:12px 14px; background:var(--page); color:var(--ink); border:1px solid var(--line); border-radius:7px; font-size:13px; }
.field small { color:var(--muted); font-size:11px; }
.admin-panel { padding:26px; background:var(--surface); border:1px solid var(--line); border-radius:10px; }
.admin-panel h2 { font-size:21px; margin-bottom:22px; }
.notice { padding:15px 20px; margin-block:20px; border:1px solid var(--line); border-inline-start:3px solid var(--accent); border-radius:6px; background:var(--surface); font-size:13px; }
.skip-link { position:fixed; z-index:100; top:10px; left:10px; padding:10px; background:var(--accent); color:#111; transform:translateY(-150%); }
.skip-link:focus { transform:translateY(0); }
@media(min-width:1101px) { .mobile-nav { display:none!important; } }
@media(max-width:1100px) { .desktop-nav { display:none; } .mobile-menu-button { display:inline-flex; } .mobile-nav { display:grid; padding-block:12px 20px; gap:6px; } .mobile-nav a { padding:9px; border-bottom:1px solid var(--line); font-size:13px; } .workshop-grid { gap:35px; } .hero-caption { display:none; } }
@media(max-width:700px) { .site-container { width:calc(100% - 36px); } .utility-bar { font-size:9px; } .utility-bar a { font-size:0; } .utility-bar a span { font-size:10px; } .nav-row { min-height:76px; gap:10px; } .brand { font-size:12px; gap:8px; } .brand-mark { width:36px; height:40px; } .brand small { font-size:8px; } .nav-book { display:none; } .hero { min-height:590px; } .hero-content { padding-block:65px; } .hero h1 { max-width:360px; font-size:56px; } .hero p { font-size:13px; max-width:330px; } .hero-location { flex-wrap:wrap; font-size:7px; margin-top:44px; } .hero-shade { background:linear-gradient(90deg,#08110de6,#08110d66),linear-gradient(rgba(0,0,0,var(--hero-opacity)),transparent); } .trust-strip .site-container>div { padding:17px 0; border-inline-end:0; border-bottom:1px solid var(--line); } .section-space { padding-block:56px; } .section-heading { display:block; } .section-heading>div+div,.section-heading>p { margin-top:20px; } .workshop-grid { grid-template-columns:1fr; gap:32px; } .workshop-image { height:340px; } .process-grid { grid-template-columns:1fr; gap:25px; } .process-grid h3 { margin-top:10px; } .cta-panel { padding:32px 25px; flex-direction:column; align-items:start; margin-bottom:55px; } .footer-grid { grid-template-columns:1fr 1fr; gap:25px; padding-block:40px; } .footer-bottom { flex-direction:column; gap:8px; } .page-heading { padding-top:42px; } }
@media(prefers-reduced-motion:reduce) { *,*::before,*::after { transition:none!important; animation:none!important; scroll-behavior:auto!important; } }

/* ==========================================================================
   Complete High-Accuracy Light / Dark Theme Styles
   ========================================================================== */

/* Light Theme Foundations */
[data-theme="light"] {
    color-scheme: light;
}

[data-theme="light"] body {
    background-color: #f8fafc;
    color: #0f172a;
}

/* Light Theme: Non-button/badge text-white becomes crisp dark ink */
[data-theme="light"] .text-white:not(
    button,
    button *,
    a.button,
    a.button *,
    [class*="bg-sky-600"],
    [class*="bg-sky-600"] *,
    [class*="bg-sky-500"],
    [class*="bg-sky-500"] *,
    [class*="bg-blue-600"],
    [class*="bg-blue-600"] *,
    [class*="bg-emerald-600"],
    [class*="bg-emerald-600"] *,
    [class*="bg-emerald-500"],
    [class*="bg-emerald-500"] *,
    [class*="bg-amber-600"],
    [class*="bg-amber-600"] *,
    [class*="bg-amber-500"],
    [class*="bg-amber-500"] *,
    [class*="bg-purple-600"],
    [class*="bg-purple-600"] *,
    [class*="bg-purple-500"],
    [class*="bg-purple-500"] *,
    [class*="bg-rose-600"],
    [class*="bg-rose-600"] *,
    [class*="bg-rose-500"],
    [class*="bg-rose-500"] *,
    [class*="bg-gradient-"],
    [class*="bg-gradient-"] *,
    .hero,
    .hero *,
    .hero-dark,
    .hero-dark *,
    .utility-bar,
    .utility-bar *,
    .brand-mark,
    .brand-mark *,
    .button-primary,
    .button-primary *,
    .button-dark,
    .button-dark *,
    .video-showcase-frame,
    .video-showcase-frame *
) {
    color: #0f172a !important;
}

/* Light Theme: Prevent hover:text-white from rendering invisible text on white cards */
[data-theme="light"] .hover\:text-white:hover:not(
    button,
    button *,
    a.button,
    a.button *,
    [class*="bg-sky-"],
    [class*="bg-blue-"],
    [class*="bg-emerald-"],
    [class*="bg-amber-"],
    [class*="bg-purple-"],
    [class*="bg-rose-"],
    .hero-dark *,
    .utility-bar *
) {
    color: #0f172a !important;
}

/* Light Theme: Accessible, AAA Contrast for Brand Accent Colors */
[data-theme="light"] .text-amber-400:not(.hero-dark *):not(.utility-bar *):not(button *):not([class*="bg-sky-"] *):not([class*="bg-blue-"] *) {
    color: #b45309 !important;
}

[data-theme="light"] .text-sky-400:not(.hero-dark *):not(.utility-bar *):not(button *):not([class*="bg-sky-"] *) {
    color: #0284c7 !important;
}

[data-theme="light"] .text-emerald-400:not(.hero-dark *):not(.utility-bar *):not(button *):not([class*="bg-emerald-"] *) {
    color: #059669 !important;
}

[data-theme="light"] .text-purple-400:not(.hero-dark *):not(.utility-bar *):not(button *) {
    color: #7c3aed !important;
}

[data-theme="light"] .text-cyan-400:not(.hero-dark *):not(.utility-bar *):not(button *) {
    color: #0891b2 !important;
}

/* Light Theme: Form Controls, Inputs, and Selects */
[data-theme="light"] input:not([type="checkbox"]):not([type="radio"]),
[data-theme="light"] select,
[data-theme="light"] textarea {
    background-color: #ffffff !important;
    border-color: #cbd5e1 !important;
    color: #0f172a !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

[data-theme="light"] input::placeholder,
[data-theme="light"] textarea::placeholder,
[data-theme="light"] select::placeholder {
    color: #94a3b8 !important;
}

[data-theme="light"] input:focus,
[data-theme="light"] select:focus,
[data-theme="light"] textarea:focus {
    border-color: #0284c7 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15) !important;
}

/* Light Theme: Surfaces, Cards & Borders */
[data-theme="light"] .bg-slate-900,
[data-theme="light"] article.service-card,
[data-theme="light"] .admin-panel {
    background-color: #ffffff !important;
    border-color: #e2e8f0 !important;
    box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .bg-slate-950:not(.hero-dark):not(.hero-dark *) {
    background-color: #f8fafc !important;
}

[data-theme="light"] .border-slate-800 {
    border-color: #e2e8f0 !important;
}

[data-theme="light"] .border-slate-700 {
    border-color: #cbd5e1 !important;
}

/* Top Utility Bar Preservation (Always Dark & Sharp) */
.utility-bar {
    background-color: #090d16 !important;
    color: #cbd5e1 !important;
    border-bottom: 1px solid #1e293b;
}

[data-theme="light"] .utility-bar {
    background-color: #090d16 !important;
    color: #cbd5e1 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .utility-bar span,
[data-theme="light"] .utility-bar a {
    color: #cbd5e1 !important;
}

[data-theme="light"] .utility-bar a:hover {
    color: #ffffff !important;
}

[data-theme="light"] .utility-bar strong.text-amber-400 {
    color: #fbbf24 !important;
}

[data-theme="light"] .utility-bar a.text-sky-400 {
    color: #38bdf8 !important;
}

/* Cinematic Dark Hero Preservation */
.hero-dark {
    background-color: #06090e !important;
    color: #ffffff !important;
    border-bottom: 1px solid #162032 !important;
}

.hero-dark h1,
.hero-dark h2,
.hero-dark h3,
.hero-dark .text-white {
    color: #ffffff !important;
}

.hero-dark .text-slate-300 {
    color: #cbd5e1 !important;
}

.hero-dark .text-slate-400 {
    color: #94a3b8 !important;
}

.hero-dark .text-amber-400 {
    color: #fbbf24 !important;
}

.hero-dark .text-sky-400 {
    color: #38bdf8 !important;
}

.hero-dark .text-emerald-400 {
    color: #34d399 !important;
}

.hero-dark .text-purple-400 {
    color: #c084fc !important;
}

/* Dark Theme Preservations */
[data-theme="dark"] body {
    background-color: #080c14;
    color: #f8fafc;
}

[data-theme="dark"] .bg-slate-950 {
    background-color: #080c14;
}

[data-theme="dark"] .bg-slate-900 {
    background-color: #0f172a;
}

[data-theme="dark"] .border-slate-800 {
    border-color: #1e293b;
}

[data-theme="dark"] .border-slate-700 {
    border-color: #334155;
}

