/* ================================================================
 * Rokn Construction — Elementor Widgets CSS
 * Brand: deep navy (true blue-navy) with blue-glow accent + glassmorphism.
 * Arabic / RTL. Mobile-first.
 *
 * COLOR NOTE: All hex values are mathematically converted from the
 * Lovable oklch design tokens — do NOT change these to match Elementor's
 * Global Color picker (Elementor uses sRGB which will drift the hue).
 * ================================================================ */

/*
 * ELEMENTOR COLOR OVERRIDE LOCK
 * Prevents Elementor Global Colors / theme kit / Hello Elementor from
 * overwriting the brand palette when an editor changes Global Color settings.
 */
.rokn-section,
.rokn-section *,
[class^="rokn-"],
[class^="rokn-"] * {
    --e-global-color-primary:   #081e67 !important;
    --e-global-color-secondary: #112a74 !important;
    --e-global-color-accent:    #296cd8 !important;
    --e-global-color-text:      #050f2c !important;
}

:root {
    /* ── Accurate hex values converted from Lovable's oklch design tokens ── */
    --rokn-primary: #081e67;        /* oklch(0.28 0.13 265) */
    --rokn-primary-glow: #296cd8;   /* oklch(0.55 0.18 260) */
    --rokn-brand: #112a74;          /* oklch(0.32 0.13 265) */
    --rokn-brand-deep: #020e51;     /* oklch(0.22 0.12 265) */
    --rokn-gold: #e8aa4e;           /* oklch(0.78 0.13 75)  */

    --rokn-bg: #f8fafd;             /* oklch(0.985 0.005 250) */
    --rokn-fg: #050f2c;             /* oklch(0.18 0.06 265)   */
    --rokn-card: #ffffff;
    --rokn-card-fg: #050f2c;
    --rokn-muted: #e9eff7;          /* oklch(0.95 0.012 255)  */
    --rokn-muted-fg: #56647a;       /* oklch(0.5 0.04 260)    */
    --rokn-accent: #d9e9ff;         /* oklch(0.93 0.04 260)   */
    --rokn-border: #d8dee8;         /* oklch(0.9 0.015 260)   */
    --rokn-input: #dfe5ef;          /* oklch(0.92 0.015 260)  */

    --rokn-primary-fg: #f8fafd;     /* oklch(0.985 0.005 250) */

    --rokn-font: 'Cairo', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --rokn-radius: 1rem;

    --rokn-shadow-card: 0 8px 30px -10px rgba(2, 14, 81, 0.18);
    --rokn-shadow-elegant: 0 20px 60px -20px rgba(2, 14, 81, 0.35);
    --rokn-shadow-glow: 0 0 80px rgba(41, 108, 216, 0.3);

    --rokn-gradient-hero: linear-gradient(135deg, #01083d 0%, #061c6c 50%, #03409c 100%);
    --rokn-gradient-brand: linear-gradient(135deg, #020e51, #296cd8);
    --rokn-gradient-overlay: linear-gradient(180deg, rgba(1, 8, 61, 0.1) 0%, rgba(1, 8, 61, 0.85) 100%);

    --rokn-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ Reset-ish for all widgets ============ */
[class^="rokn-"], [class*=" rokn-"] {
    font-family: var(--rokn-font);
    box-sizing: border-box;
}
[class^="rokn-"] *, [class*=" rokn-"] * {
    box-sizing: border-box;
}

/* ============ Section wrapper ============ */
.rokn-section {
    width: 100%;
    padding: 3rem 1rem;
    font-family: var(--rokn-font);
    direction: rtl;
    text-align: right;
}
.rokn-section-dark {
    background: var(--rokn-gradient-hero);
    color: var(--rokn-primary-fg);
}
.rokn-section-muted {
    background: rgba(231, 229, 240, 0.5);
}

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

.rokn-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rokn-primary-glow);
    display: inline-block;
}

.rokn-title {
    font-family: var(--rokn-font);
    font-weight: 700;
    color: var(--rokn-brand-deep);
    font-size: 1.75rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0.5rem 0 0 0;
}
.rokn-section-dark .rokn-title {
    color: var(--rokn-primary-fg);
}

.rokn-desc {
    color: var(--rokn-muted-fg);
    line-height: 1.8;
    margin-top: 1rem;
}
.rokn-section-dark .rokn-desc {
    color: rgba(250, 250, 253, 0.85);
}

@media (min-width: 768px) {
    .rokn-section { padding: 5rem 2rem; }
    .rokn-title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
    .rokn-title { font-size: 2.5rem; }
}

/* ============ Buttons ============ */
.rokn-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--rokn-transition);
    cursor: pointer;
    border: 0;
    line-height: 1.2;
}
.rokn-btn-primary {
    background: var(--rokn-primary-fg);
    color: var(--rokn-brand-deep);
    box-shadow: var(--rokn-shadow-elegant);
}
.rokn-btn-primary:hover {
    transform: scale(1.02);
    color: var(--rokn-brand-deep);
}
.rokn-btn-ghost {
    background: rgba(250, 250, 253, 0.1);
    color: var(--rokn-primary-fg);
    border: 1px solid rgba(250, 250, 253, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.rokn-btn-ghost:hover {
    background: rgba(250, 250, 253, 0.2);
    color: var(--rokn-primary-fg);
}
.rokn-btn-brand {
    background: var(--rokn-gradient-brand);
    color: var(--rokn-primary-fg);
    box-shadow: var(--rokn-shadow-card);
}
.rokn-btn-brand:hover {
    box-shadow: var(--rokn-shadow-elegant);
    color: var(--rokn-primary-fg);
}

/* ============ HEADER ============ */
.rokn-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: rgba(250, 250, 253, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 225, 233, 0.6);
    font-family: var(--rokn-font);
    direction: rtl;
    box-shadow: 0 2px 20px rgba(26, 22, 72, 0.06);
}
.rokn-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 5rem;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.rokn-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.rokn-header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    max-height: 4rem;
    overflow: hidden;
}
.rokn-header-logo img {
    height: 3.5rem;
    max-height: 3.5rem;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}
.rokn-header-nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
}
.rokn-header-nav a {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--rokn-fg);
    text-decoration: none;
    transition: var(--rokn-transition);
}
.rokn-header-nav a:hover {
    background: var(--rokn-accent);
}
.rokn-header-nav a.rokn-active {
    background: var(--rokn-primary);
    color: var(--rokn-primary-fg);
    box-shadow: var(--rokn-shadow-card);
}
.rokn-header-cta {
    display: none;
    background: var(--rokn-gradient-brand);
    color: var(--rokn-primary-fg);
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--rokn-shadow-card);
    transition: var(--rokn-transition);
    white-space: nowrap;
    line-height: 1.2;
}
.rokn-header-cta:hover {
    box-shadow: var(--rokn-shadow-elegant);
    color: var(--rokn-primary-fg);
}
.rokn-header-toggle {
    display: inline-flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: var(--rokn-accent);
    color: var(--rokn-fg);
    border: 0;
    cursor: pointer;
    font-size: 1.125rem;
}
.rokn-header-mobile-nav {
    display: none;
    border-top: 1px solid rgba(226, 225, 233, 0.6);
    background: var(--rokn-bg);
    padding: 1rem;
}
.rokn-header-mobile-nav.rokn-open {
    display: block;
}
.rokn-header-mobile-nav nav {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.rokn-header-mobile-nav a {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--rokn-fg);
    text-decoration: none;
}
.rokn-header-mobile-nav a:hover, .rokn-header-mobile-nav a.rokn-active {
    background: var(--rokn-accent);
}
.rokn-header-mobile-cta {
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--rokn-gradient-brand);
    color: var(--rokn-primary-fg);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
}

@media (min-width: 768px) {
    .rokn-header-inner { padding: 0 2rem; }
    .rokn-header-nav { display: flex; }
    .rokn-header-cta { display: inline-flex; }
    .rokn-header-toggle { display: none !important; }
    .rokn-header-mobile-nav { display: none !important; }
}
@media (max-width: 767px) {
    .rokn-header-nav { display: none !important; }
    .rokn-header-cta { display: none !important; }
}

/* ============ HERO ============ */
.rokn-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
    direction: rtl;
    font-family: var(--rokn-font);
}
.rokn-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--rokn-gradient-overlay);
}
.rokn-hero-overlay-2 {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(270deg, rgba(26, 22, 72, 0.9), rgba(26, 22, 72, 0.5), transparent);
}
.rokn-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 7rem 1rem;
    width: 100%;
}
.rokn-hero-inner {
    max-width: 42rem;
}
.rokn-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(250, 250, 253, 0.2);
    background: rgba(250, 250, 253, 0.1);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--rokn-primary-fg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.rokn-hero-title {
    margin-top: 1.5rem;
    font-family: var(--rokn-font);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--rokn-primary-fg);
    letter-spacing: -0.01em;
}
.rokn-hero-title .rokn-accent {
    color: var(--rokn-primary-glow);
}
.rokn-hero-desc {
    margin-top: 1.5rem;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(250, 250, 253, 0.85);
}
.rokn-hero-ctas {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .rokn-hero-content { padding: 10rem 2rem; }
    .rokn-hero-title { font-size: 3.75rem; }
    .rokn-hero-desc { font-size: 1.125rem; }
}
@media (max-width: 767px) {
    .rokn-hero { min-height: 100svh; background-attachment: scroll !important; }
}

/* ============ FEATURES / VALUES GRID ============ */
.rokn-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .rokn-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .rokn-features-grid { grid-template-columns: repeat(4, 1fr); }
}
.rokn-features-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .rokn-features-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .rokn-features-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.rokn-feature-card {
    border: 1px solid var(--rokn-border);
    background: var(--rokn-card);
    border-radius: 1.5rem;
    padding: 1.75rem;
    box-shadow: var(--rokn-shadow-card);
    transition: var(--rokn-transition);
}
.rokn-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rokn-shadow-elegant);
}
.rokn-icon-circle {
    display: inline-flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: var(--rokn-gradient-brand);
    color: var(--rokn-primary-fg);
    font-size: 1.25rem;
    transition: var(--rokn-transition);
}
.rokn-feature-card:hover .rokn-icon-circle {
    box-shadow: var(--rokn-shadow-glow);
}
.rokn-icon-circle-lg {
    height: 3.5rem;
    width: 3.5rem;
    font-size: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--rokn-shadow-card);
}
.rokn-feature-title {
    margin-top: 1.25rem;
    font-family: var(--rokn-font);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--rokn-fg);
}
.rokn-feature-desc {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--rokn-muted-fg);
}

/* ============ SERVICES / PROJECTS CARD ============ */
.rokn-card-img {
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid var(--rokn-border);
    background: var(--rokn-card);
    box-shadow: var(--rokn-shadow-card);
    transition: var(--rokn-transition);
    display: block;
    text-decoration: none;
    color: inherit;
}
.rokn-card-img:hover {
    transform: translateY(-4px);
    box-shadow: var(--rokn-shadow-elegant);
    color: inherit;
}
.rokn-card-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.rokn-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--rokn-transition);
}
.rokn-card-img:hover .rokn-card-img-wrap img {
    transform: scale(1.05);
}
.rokn-card-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26, 22, 72, 0.7), transparent 60%);
    pointer-events: none;
}
.rokn-card-body {
    padding: 1.5rem;
}
.rokn-card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--rokn-font);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--rokn-fg);
}
.rokn-card-title i {
    color: var(--rokn-primary-glow);
    font-size: 1.125rem;
}
.rokn-card-desc {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--rokn-muted-fg);
}

/* Projects grid overlay style */
.rokn-project-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid var(--rokn-border);
    box-shadow: var(--rokn-shadow-card);
    transition: var(--rokn-transition);
    display: block;
    text-decoration: none;
}
.rokn-project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rokn-shadow-elegant);
}
.rokn-project-card-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.rokn-project-card-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--rokn-transition);
}
.rokn-project-card:hover img {
    transform: scale(1.1);
}
.rokn-project-card-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26, 22, 72, 0.85), rgba(26, 22, 72, 0.1) 40%, transparent);
}
.rokn-project-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    background: rgba(250, 250, 253, 0.95);
    color: var(--rokn-brand-deep);
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}
.rokn-project-info {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.25rem;
    color: var(--rokn-primary-fg);
}
.rokn-project-info h3 {
    font-family: var(--rokn-font);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}
.rokn-project-info p {
    font-size: 0.75rem;
    margin: 0.25rem 0 0 0;
    color: rgba(250, 250, 253, 0.8);
}

/* ============ WHY US ============ */
.rokn-whyus {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 768px) {
    .rokn-whyus { grid-template-columns: 1fr 1fr; }
}
.rokn-whyus-bullets {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.rokn-whyus-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}
.rokn-whyus-bullets li i {
    color: var(--rokn-primary-glow);
    font-size: 1.25rem;
}
.rokn-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.rokn-stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--rokn-shadow-elegant);
}
.rokn-stat-value {
    font-family: var(--rokn-font);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--rokn-primary-fg);
    line-height: 1.2;
}
.rokn-stat-label {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: rgba(250, 250, 253, 0.8);
}

/* ============ CLIENTS ============ */
.rokn-clients-header {
    text-align: center;
}
.rokn-clients-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 640px) { .rokn-clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .rokn-clients-grid { gap: 1.5rem; } }
@media (min-width: 1024px) { .rokn-clients-grid { grid-template-columns: repeat(6, 1fr); } }

.rokn-client-card {
    aspect-ratio: 1 / 1;
    border: 1px solid var(--rokn-border);
    background: var(--rokn-card);
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--rokn-shadow-card);
    transition: var(--rokn-transition);
}
.rokn-client-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rokn-shadow-elegant);
}
.rokn-client-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--rokn-transition);
}
.rokn-client-card:hover img {
    transform: scale(1.05);
}

/* ============ CTA BOX ============ */
.rokn-cta-box {
    overflow: hidden;
    border-radius: 2.5rem;
    background: var(--rokn-gradient-brand);
    color: var(--rokn-primary-fg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: var(--rokn-shadow-elegant);
}
.rokn-cta-box h2 {
    font-family: var(--rokn-font);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--rokn-primary-fg);
}
.rokn-cta-box p {
    margin: 1rem auto 0;
    max-width: 36rem;
    color: rgba(250, 250, 253, 0.85);
}
.rokn-cta-box-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}
.rokn-btn-outline-light {
    border: 1px solid rgba(250, 250, 253, 0.4);
    color: var(--rokn-primary-fg);
}
.rokn-btn-outline-light:hover {
    background: rgba(250, 250, 253, 0.1);
    color: var(--rokn-primary-fg);
}
@media (min-width: 768px) {
    .rokn-cta-box { padding: 4rem 2rem; }
    .rokn-cta-box h2 { font-size: 2.25rem; }
}

/* ============ VISION / MISSION ============ */
.rokn-vm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .rokn-vm-grid { grid-template-columns: 1fr 1fr; }
}
.rokn-vm-card {
    background: var(--rokn-card);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--rokn-shadow-card);
    transition: var(--rokn-transition);
}
.rokn-vm-card:hover {
    box-shadow: var(--rokn-shadow-elegant);
}
.rokn-vm-card h3 {
    margin: 1.5rem 0 0 0;
    font-family: var(--rokn-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rokn-brand-deep);
}
.rokn-vm-card p {
    margin: 0.75rem 0 0 0;
    line-height: 1.8;
    color: var(--rokn-muted-fg);
}

/* ============ ABOUT STORY ============ */
.rokn-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 768px) {
    .rokn-story { grid-template-columns: 1fr 1fr; }
}
.rokn-story-img {
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: var(--rokn-shadow-elegant);
}
.rokn-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rokn-story-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.rokn-story-text p {
    margin-top: 1rem;
    line-height: 1.8;
    color: var(--rokn-muted-fg);
}

/* ============ INNER PAGE HERO (About/Projects/Contact) ============ */
.rokn-page-hero {
    position: relative;
    overflow: hidden;
    background: var(--rokn-gradient-hero);
    color: var(--rokn-primary-fg);
    padding: 6rem 1rem;
    isolation: isolate;
    font-family: var(--rokn-font);
    direction: rtl;
}
@media (min-width: 768px) {
    .rokn-page-hero { padding: 8rem 2rem; }
}
.rokn-page-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.rokn-page-hero h1 {
    margin: 0.5rem 0 0 0;
    font-family: var(--rokn-font);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--rokn-primary-fg);
    letter-spacing: -0.01em;
}
@media (min-width: 768px) {
    .rokn-page-hero h1 { font-size: 3rem; }
}
.rokn-page-hero p {
    margin-top: 1.25rem;
    max-width: 42rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(250, 250, 253, 0.85);
}
.rokn-page-hero-blob-1 {
    position: absolute;
    left: -5rem;
    top: -5rem;
    width: 18rem;
    height: 18rem;
    border-radius: 9999px;
    background: rgba(91, 82, 209, 0.2);
    filter: blur(48px);
    z-index: 1;
}
.rokn-page-hero-blob-2 {
    position: absolute;
    right: -5rem;
    bottom: -5rem;
    width: 18rem;
    height: 18rem;
    border-radius: 9999px;
    background: rgba(91, 82, 209, 0.1);
    filter: blur(48px);
    z-index: 1;
}

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

/* Overflow lock: prevents any child from causing horizontal scroll */
.rokn-section:has(.rokn-contact-grid),
.elementor-widget-rokn-contact-section {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

.rokn-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
@media (min-width: 1024px) {
    .rokn-contact-grid { grid-template-columns: 2fr 3fr; }
}
.rokn-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}
.rokn-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--rokn-border);
    background: var(--rokn-card);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: var(--rokn-shadow-card);
    transition: var(--rokn-transition);
    text-decoration: none;
    color: inherit;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}
.rokn-contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--rokn-shadow-elegant);
    color: inherit;
}
.rokn-contact-item-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--rokn-gradient-brand);
    color: var(--rokn-primary-fg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}
.rokn-contact-item-text {
    min-width: 0;
    flex: 1;
}
.rokn-contact-item-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rokn-muted-fg);
}
.rokn-contact-item-value {
    font-family: var(--rokn-font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--rokn-brand-deep);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
.rokn-contact-hours {
    background: rgba(217, 233, 255, 0.4);
    border: 1px solid var(--rokn-border);
}

.rokn-contact-form {
    background: var(--rokn-card);
    border: 1px solid var(--rokn-border);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--rokn-shadow-elegant);
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}
@media (min-width: 768px) {
    .rokn-contact-form { padding: 2.5rem; }
}
.rokn-contact-form h2 {
    font-family: var(--rokn-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rokn-brand-deep);
    margin: 0;
}
.rokn-contact-form-subtitle {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--rokn-muted-fg);
}
.rokn-form-row {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}
@media (min-width: 768px) {
    .rokn-form-row { grid-template-columns: 1fr 1fr; }
}
.rokn-form-field-group {
    margin-top: 1rem;
    min-width: 0;
}
.rokn-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rokn-fg);
}
.rokn-form-field {
    width: 100%;
    max-width: 100%;
    margin-top: 0.5rem;
    background: var(--rokn-bg);
    border: 1px solid var(--rokn-input);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-family: var(--rokn-font);
    outline: 0;
    transition: var(--rokn-transition);
    box-sizing: border-box;
}
.rokn-form-field:focus {
    border-color: var(--rokn-primary-glow);
    box-shadow: 0 0 0 3px rgba(41, 108, 216, 0.2);
}
textarea.rokn-form-field {
    resize: vertical;
}
.rokn-form-submit {
    margin-top: 1.5rem;
    display: inline-flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background: var(--rokn-gradient-brand);
    color: var(--rokn-primary-fg);
    padding: 1rem 1.75rem;
    border: 0;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--rokn-shadow-card);
    transition: var(--rokn-transition);
    font-family: var(--rokn-font);
    text-decoration: none;
    box-sizing: border-box;
}
.rokn-form-submit:hover {
    box-shadow: var(--rokn-shadow-elegant);
    color: var(--rokn-primary-fg);
}

.rokn-form-alert {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.5;
}
.rokn-form-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.rokn-form-alert-success i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.rokn-form-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.rokn-form-alert-error i {
    color: #ef4444;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ============ FOOTER ============ */
.rokn-footer {
    background: var(--rokn-gradient-hero);
    color: var(--rokn-primary-fg);
    font-family: var(--rokn-font);
    direction: rtl;
}
.rokn-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 768px) {
    .rokn-footer-inner { grid-template-columns: 2fr 1fr 1fr; padding: 4rem 2rem; }
}
.rokn-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.rokn-footer-logo {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: var(--rokn-primary-fg);
    border-radius: 9999px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--rokn-shadow-card);
}
.rokn-footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.rokn-footer-brand-name {
    font-family: var(--rokn-font);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
}
.rokn-footer-desc {
    margin-top: 1.25rem;
    max-width: 28rem;
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(250, 250, 253, 0.8);
}
.rokn-footer-col h3 {
    font-family: var(--rokn-font);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}
.rokn-footer-col ul {
    margin: 1rem 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(250, 250, 253, 0.8);
}
.rokn-footer-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.rokn-footer-col ul li i {
    color: var(--rokn-primary-glow);
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}
.rokn-footer-col a {
    color: rgba(250, 250, 253, 0.8);
    text-decoration: none;
    transition: var(--rokn-transition);
}
.rokn-footer-col a:hover {
    color: var(--rokn-primary-fg);
}
.rokn-footer-social {
    margin-top: 1.5rem;
}
.rokn-footer-social h4 {
    font-family: var(--rokn-font);
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0;
}
.rokn-footer-social-links {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.75rem;
}
.rokn-footer-social-links a {
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgba(250, 250, 253, 0.1);
    color: var(--rokn-primary-fg);
    text-decoration: none;
    transition: var(--rokn-transition);
    font-size: 1rem;
}
.rokn-footer-social-links a:hover {
    background: var(--rokn-primary-fg);
    color: var(--rokn-brand-deep);
}
.rokn-footer-bottom {
    border-top: 1px solid rgba(250, 250, 253, 0.1);
}
.rokn-footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(250, 250, 253, 0.6);
}
@media (min-width: 768px) {
    .rokn-footer-bottom-inner { flex-direction: row; padding: 1.25rem 2rem; }
}
.rokn-agency-link {
    color: inherit;
    opacity: 0.5;
    text-decoration: none;
    transition: opacity 0.2s;
}
.rokn-agency-link:hover {
    opacity: 1;
    color: inherit;
}

/* ============ FLOATING WHATSAPP ============ */
.rokn-floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 50;
    display: flex;
    width: 3.5rem;
    height: 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    box-shadow: var(--rokn-shadow-elegant);
    transition: var(--rokn-transition);
    font-size: 1.75rem;
}
.rokn-floating-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
}
.rokn-floating-whatsapp::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    background: #25D366;
    opacity: 0.4;
    animation: rokn-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes rokn-ping {
    75%, 100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ============ Section header with link (services row) ============ */
.rokn-section-head-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}
@media (min-width: 768px) {
    .rokn-section-head-row { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}
.rokn-viewall-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rokn-brand);
    text-decoration: none;
    transition: var(--rokn-transition);
}
.rokn-viewall-link:hover { color: var(--rokn-primary-glow); }

.rokn-grid-top { margin-top: 3rem; }

.rokn-text-center { text-align: center; }
