/* ═══════════════════════════════════════════════════════════════
   OREL FUTURE THEME — Main Stylesheet
   Inspired by MSOC Platform Design System
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
    --bg1: #0a0e17;
    --bg2: #111827;
    --bg3: #1a2332;
    --bg4: #1e293b;
    --bg5: #243044;
    --accent: #f97316;
    --accent-hover: #ea580c;
    --accent-glow: rgba(249,115,22,0.15);
    --accent-dim: rgba(249,115,22,0.08);
    --text1: #f1f5f9;
    --text2: #94a3b8;
    --text3: #64748b;
    --text4: #475569;
    --green: #10b981;
    --orange: #f59e0b;
    --red: #ef4444;
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --border: #2d3a4a;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --shadow: 0 4px 12px rgba(0,0,0,0.3);
    --header-height: 72px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--bg1);
    color: var(--text1);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

/* ═══════════════════════════════════════════════════════════════
   BACKGROUND EFFECTS
   ═══════════════════════════════════════════════════════════════ */

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* Grid Overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(249,115,22,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249,115,22,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 8s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Glow Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.glow-orb--top {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: rgba(249,115,22,0.10);
    animation: orbA 12s ease-in-out infinite alternate;
}

.glow-orb--bottom {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: rgba(59,130,246,0.06);
    animation: orbB 12s ease-in-out infinite alternate;
}

@keyframes orbA {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    100% { transform: translate(-80px, 80px) scale(1.3); opacity: 1; }
}

@keyframes orbB {
    0% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    100% { transform: translate(80px, -60px) scale(1.2); opacity: 0.8; }
}

/* ═══════════════════════════════════════════════════════════════
   SITE WRAPPER
   ═══════════════════════════════════════════════════════════════ */

#page {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex: 1;
    position: relative;
    z-index: 2;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(10, 14, 23, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo */
.site-branding {
    flex-shrink: 0;
}

.site-branding .custom-logo-link {
    display: block;
}

.site-branding .custom-logo {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(249,115,22,0.2));
}

.site-logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 24px;
    color: var(--accent);
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text2);
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: var(--text1);
    background: var(--accent-dim);
}

.nav-menu .menu-item-has-children > a::after {
    content: '▾';
    margin-left: 4px;
    font-size: 10px;
}

/* Submenu */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 200;
}

.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu a {
    padding: 8px 12px;
    font-size: 12px;
}

.nav-menu .sub-menu a:hover {
    background: var(--accent-dim);
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--text1);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Header CTA */
.header-cta {
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL PROGRESS
   ═══════════════════════════════════════════════════════════════ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    z-index: 101;
    background: linear-gradient(90deg, var(--accent), #fb923c, var(--accent));
    background-size: 200% 100%;
    width: 0;
    transition: width 0.1s linear;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(249,115,22,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: 20px;
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px rgba(16,185,129,0.5);
    animation: dotPulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent), #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

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

.hero-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.hero-stat-label {
    font-size: 12px;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════════════════════════ */

.section {
    padding: 100px 24px;
    position: relative;
}

.section-dark {
    background: var(--bg2);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════════════════ */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.service-card {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #fb923c, var(--accent), transparent);
    background-size: 200% 100%;
    animation: barShimmer 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    border-color: var(--accent-dim);
    background: rgba(17, 24, 39, 0.75);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--accent-dim);
    border: 1px solid rgba(249,115,22,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent);
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    background: rgba(249,115,22,0.15);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(249,115,22,0.15);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text1);
}

.service-card p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.2s ease;
}

.service-card-link:hover {
    gap: 12px;
}

.service-card-link svg {
    transition: transform 0.2s ease;
}

.service-card-link:hover svg {
    transform: translateX(2px);
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-20deg) translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::before {
    transform: skewX(-20deg) translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fb923c, var(--accent));
    box-shadow: 0 6px 24px rgba(249,115,22,0.35);
    transform: translateY(-1px);
    color: white;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(249,115,22,0.25);
}

.btn-glow {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white;
    box-shadow: 0 0 20px rgba(249,115,22,0.2);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(249,115,22,0.4);
    transform: translateY(-1px);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text2);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--text1);
    background: var(--accent-dim);
}

.btn-ghost {
    background: transparent;
    color: var(--text2);
    padding: 8px 16px;
}

.btn-ghost:hover {
    color: var(--text1);
    background: rgba(255,255,255,0.04);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */





@media (max-width: 900px) {

@media (max-width: 600px) {














/* Scroll to top */
.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 150;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.scroll-top-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 6px 20px rgba(249,115,22,0.3);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   PAGE CONTENT
   ═══════════════════════════════════════════════════════════════ */

.page-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 120px 24px 60px;
}

.page-header-content {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.page-header-content::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 1px;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-description {
    font-size: 16px;
    color: var(--text2);
}

.entry-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text2);
}

.entry-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text1);
    margin: 40px 0 16px;
}

.entry-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text1);
    margin: 32px 0 12px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content ul, .entry-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.entry-content li {
    margin-bottom: 8px;
}

.entry-content ul li::marker {
    color: var(--accent);
}

.entry-content img {
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.entry-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(249,115,22,0.04);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text2);
}

/* ─── Latest Posts Grid ─── */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.post-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-card:hover {
    border-color: var(--accent-dim);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.post-card-image {
    height: 200px;
    background: var(--bg3);
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-body {
    padding: 24px;
}

.post-card-meta {
    font-size: 11px;
    color: var(--text3);
    margin-bottom: 8px;
}

.post-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.post-card-title a {
    color: var(--text1);
}

.post-card-title a:hover {
    color: var(--accent);
}

.post-card-excerpt {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
}

/* ─── 404 Page ─── */
.error-404-content {
    text-align: center;
    padding: 120px 24px;
}

.error-404-content h1 {
    font-size: 120px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.error-404-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.error-404-content p {
    color: var(--text2);
    margin-bottom: 32px;
}

/* ─── Search ─── */
.search-form {
    display: flex;
    gap: 8px;
    max-width: 500px;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text1);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ─── Pagination ─── */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
}

.pagination a, .pagination span {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--text2);
    transition: all 0.2s;
}

.pagination a:hover {
    border-color: var(--accent);
    color: var(--text1);
}

.pagination .current {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* ─── WordPress Core ─── */
.aligncenter {
    text-align: center;
}

.wp-block-button__link {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover)) !important;
    border-radius: 10px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
}

.wp-block-button__link:hover {
    box-shadow: 0 6px 24px rgba(249,115,22,0.35) !important;
}

.wp-block-separator {
    border-color: var(--border) !important;
}

.wp-block-table {
    border-color: var(--border);
}

.wp-block-table th {
    background: var(--bg3);
    color: var(--text2);
    font-size: 12px;
    text-transform: uppercase;
}

.wp-block-table td, .wp-block-table th {
    border-color: var(--border);
    padding: 10px 12px;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */

.cta-section {
    text-align: center;
    padding: 80px 24px;
    position: relative;
    background: linear-gradient(135deg, rgba(249,115,22,0.04), rgba(59,130,246,0.04));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 16px;
    color: var(--text2);
    margin-bottom: 28px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
    .header-inner {
        padding: 0 16px;
    }

    .main-navigation .nav-menu {
        display: none;
    }

    .main-navigation.toggled .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(10, 14, 23, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 16px;
        gap: 4px;
    }

    .menu-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-value {
        font-size: 24px;
    }

    .section {
        padding: 60px 16px;
    }

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


@media (max-width: 600px) {
    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 14px;
    }


/* ═══════════════════════════════════════════════════════════════
   SERVICES PAGE LAYOUT — Applied to all pages
   ═══════════════════════════════════════════════════════════════ */

/* ─── Page Content Sections (Services-style layout) ─── */
.page-content .wp-block-group {
    border-radius: var(--radius-xl);
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
}

/* Dark background sections */
.page-content .wp-block-group.has-background,
.page-content .wp-block-group.alignfull,
.page-content .wp-block-cover {
    padding: 48px 32px;
    margin-bottom: 24px;
}

.page-content .wp-block-group.has-contrast-background-color {
    background: var(--bg2) !important;
    border: 1px solid var(--border);
}

.page-content .wp-block-group.has-background:not(.has-contrast-background-color):not(.has-base-background-color):not(.has-white-background-color) {
    background: var(--bg3) !important;
    border: 1px solid var(--border);
}

.page-content .wp-block-group.alignfull {
    width: auto;
    max-width: none;
    margin-left: -24px;
    margin-right: -24px;
    padding: 48px 24px;
    border-radius: 0;
    border-left: none;
    border-right: none;
}

/* ─── Orel Service Card ─── */
.orel-service-card,
.page-content .wp-block-group.orel-service-card {
    background: var(--bg3) !important;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
    overflow: hidden;
    color: #ffffff !important;
    position: relative;
}

.orel-service-card::before,
.page-content .wp-block-group.orel-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #fb923c, var(--accent), transparent);
    background-size: 200% 100%;
    animation: barShimmer 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.orel-service-card:hover::before,
.page-content .wp-block-group.orel-service-card:hover::before {
    opacity: 1;
}

.orel-service-card:hover,
.page-content .wp-block-group.orel-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 44px rgba(0,0,0,0.42);
    border-color: var(--accent) !important;
    background: var(--bg4) !important;
}

.orel-service-card--featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,122,0,0.08), rgba(255,122,0,0));
    pointer-events: none;
}

/* Card images */
.orel-service-card img,
.page-content .wp-block-group.orel-service-card img {
    transition: transform 0.45s ease, filter 0.45s ease;
    border-radius: var(--radius-lg);
}

.orel-service-card:hover img,
.page-content .wp-block-group.orel-service-card:hover img {
    transform: scale(1.04);
    filter: saturate(1.05);
}

/* Force white text inside service cards */
.orel-service-card h1,
.orel-service-card h2,
.orel-service-card h3,
.orel-service-card h4,
.orel-service-card h5,
.orel-service-card h6,
.orel-service-card p,
.orel-service-card li,
.orel-service-card span,
.orel-service-card strong,
.orel-service-card em,
.page-content .wp-block-group.orel-service-card h1,
.page-content .wp-block-group.orel-service-card h2,
.page-content .wp-block-group.orel-service-card h3,
.page-content .wp-block-group.orel-service-card h4,
.page-content .wp-block-group.orel-service-card h5,
.page-content .wp-block-group.orel-service-card h6,
.page-content .wp-block-group.orel-service-card p,
.page-content .wp-block-group.orel-service-card li,
.page-content .wp-block-group.orel-service-card span,
.page-content .wp-block-group.orel-service-card strong,
.page-content .wp-block-group.orel-service-card em {
    color: #ffffff !important;
}

.orel-service-card .has-small-font-size {
    color: #f3f3f3 !important;
}

.orel-service-card li::marker {
    color: var(--accent) !important;
}

.orel-service-card ul {
    padding-left: 1.25rem;
}

/* ─── Block Editor Alignment ─── */
.page-content .wp-block-group__inner-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.page-content .wp-block-columns {
    gap: 24px;
    margin-bottom: 0;
}

.page-content .wp-block-column {
    padding: 0;
}

/* ─── Generic content sections (Services-style containers) ─── */
.page-content .entry-content > .wp-block-group:not(.orel-service-card):not(.alignfull):not(.has-background),
.page-content .entry-content > .wp-block-designsetgo-section:not(.has-background),
.page-content .entry-content > .wp-block-cover {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    margin-bottom: 24px;
}

/* DesignSetGo sections with backgrounds */
.page-content .entry-content > .wp-block-designsetgo-section.has-background {
    padding: 48px 32px;
    margin-bottom: 24px;
    border-radius: var(--radius-xl);
}

.page-content .entry-content > .wp-block-designsetgo-section.has-contrast-background-color {
    background: var(--bg2) !important;
    border: 1px solid var(--border);
}

.page-content .entry-content > .wp-block-designsetgo-section.has-base-2-background-color {
    background: var(--bg3) !important;
    border: 1px solid var(--border);
}

.page-content .entry-content > .wp-block-designsetgo-section.has-base-background-color {
    background: var(--bg1) !important;
    border: 1px solid var(--border);
}

/* Cover blocks */
.page-content .entry-content > .wp-block-cover {
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Generic sections without has-background */
.page-content .entry-content > .wp-block-group:not(.orel-service-card):not(.alignfull):not(.has-background) h6.wp-block-heading,
.page-content .entry-content > .wp-block-designsetgo-section:not(.has-background) h6.wp-block-heading {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.page-content .entry-content > .wp-block-group:not(.orel-service-card):not(.alignfull):not(.has-background) h1.wp-block-heading,
.page-content .entry-content > .wp-block-designsetgo-section:not(.has-background) h1.wp-block-heading {
    color: var(--text1);
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    margin-bottom: 16px;
}

/* Style img+text column patterns */
.page-content .entry-content .wp-block-columns:not(.has-background) {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-bottom: 24px;
}

/* Style standalone images in page content */
.page-content .entry-content > .wp-block-image.size-large {
    margin-bottom: 24px;
}

.page-content .entry-content > figure.wp-block-image {
    margin-bottom: 24px;
}

.page-content .entry-content > p {
    color: var(--text2);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ─── Service card grid (3-column cards) ─── */
.page-content .entry-content .orel-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* ─── Section styling ─── */
.page-content .wp-block-group > .wp-block-heading:first-child,
.page-content h1.wp-block-heading,
.page-content h2.wp-block-heading {
    color: var(--text1);
}

.page-content h6.wp-block-heading {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.page-content h1.wp-block-heading {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
}

.page-content h2.wp-block-heading {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text1);
}

.page-content h3.wp-block-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--text1);
    margin-bottom: 12px;
}

/* ─── Text colors ─── */
.has-base-color,
.has-white-color {
    color: var(--text1) !important;
}

.has-accent-3-color,
.has-accent-color {
    color: var(--accent) !important;
}

.has-contrast-background-color {
    background-color: var(--bg2) !important;
}

.has-base-background-color {
    background-color: var(--bg1) !important;
}

/* ─── Buttons inside content ─── */
.wp-block-buttons {
    margin-top: 24px;
}

.wp-block-button__link {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover)) !important;
    border-radius: 10px !important;
    padding: 12px 28px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: inherit !important;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1) !important;
    position: relative;
    overflow: hidden;
}

.wp-block-button__link:hover {
    box-shadow: 0 6px 24px rgba(249,115,22,0.35) !important;
    transform: translateY(-1px);
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent !important;
    border: 1px solid var(--border) !important;
    color: var(--text2) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    border-color: var(--accent) !important;
    color: var(--text1) !important;
}

/* ─── Images ─── */
.page-content .wp-block-image {
    margin-bottom: 24px;
}

.page-content .wp-block-image img {
    border-radius: var(--radius-xl);
    width: 100%;
    height: auto;
}

.page-content .wp-block-image.aligncenter {
    text-align: center;
}

/* ─── Spacer ─── */
.wp-block-spacer {
    height: 24px;
}

/* ─── Lists ─── */
.page-content .wp-block-list li {
    margin-bottom: 8px;
    color: var(--text2);
}

.page-content .wp-block-list li::marker {
    color: var(--accent);
}

/* ─── Columns in card style ─── */
.page-content .wp-block-columns.has-background {
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

/* ─── Buttons row in CTA sections ─── */
.page-content .wp-block-buttons .wp-block-button {
    margin: 0;
}

.page-content .wp-block-buttons .wp-block-button .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ─── Additional content section borders ─── */
.page-content .wp-block-group.alignfull + .wp-block-group.alignfull {
    border-top: 1px solid var(--border);
}

/* ─── Three cards in a row (like Services page) ─── */
.page-content .wp-block-columns .wp-block-column .orel-service-card,
.page-content .wp-block-columns .wp-block-column.wp-block-group.orel-service-card {
    height: 100%;
}

/* ─── Animations for blocks ─── */
.page-content .wp-block-group[class*="dsgo-animation"],
.page-content [class*="dsgo-animation"] {
    animation-fill-mode: both;
}

.dsgo-animation-fadeInUp {
    animation: dsgoFadeInUp 0.6s ease-out;
}

@keyframes dsgoFadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS KEYFRAMES
   ═══════════════════════════════════════════════════════════════ */

@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(16,185,129,0.5); }
    50% { opacity: 0.5; box-shadow: 0 0 4px rgba(16,185,129,0.2); }
}

@keyframes barShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
/* ============================================
   Trust & Accreditation Section
   ============================================ */
.trust-section {
    position: relative;
    overflow: hidden;
}

.trust-bg-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 40%, rgba(234, 88, 12, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--max-width, 1160px);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

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

.trust-card {
    background: var(--bg2, rgba(255,255,255,0.03));
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    border-radius: 16px;
    padding: 32px 28px;
    backdrop-filter: blur(8px);
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

.trust-card:hover {
    transform: translateY(-6px);
    border-color: rgba(234, 88, 12, 0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 30px rgba(234, 88, 12, 0.06);
}

.trust-card-icon {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

.trust-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text1, #fff);
    margin-bottom: 12px;
    line-height: 1.3;
}

.trust-card-desc {
    font-size: 13px;
    color: var(--text3, rgba(255,255,255,0.55));
    line-height: 1.6;
    margin-bottom: 16px;
}




/* Trust card SVGs */
.trust-shield {
    width: 56px;
    height: 56px;
}

/* ============================================
   Hero Background Animations
   ============================================ */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-bg-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.12) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.10) 0%, transparent 70%);
    bottom: -5%;
    right: -5%;
    animation-delay: -4s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
    100% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-circuit-grid {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        linear-gradient(90deg, rgba(234, 88, 12, 0.3) 1px, transparent 1px),
        linear-gradient(0deg, rgba(234, 88, 12, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 6s ease-in-out infinite alternate;
}

@keyframes gridPulse {
    0% { opacity: 0.04; }
    100% { opacity: 0.10; }
}

.hero-shield-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(234, 88, 12, 0.08) 0%, transparent 60%);
    animation: shieldPulse 4s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes shieldPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* ============================================
   SVG Animation Keyframes
   ============================================ */
.check-anim {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: drawCheck 2s ease-in-out infinite alternate;
}

@keyframes drawCheck {
    0% { stroke-dashoffset: 30; }
    50%, 100% { stroke-dashoffset: 0; }
}

.pulse-ring-1 {
    transform-origin: center;
    animation: pulseRing 3s ease-in-out infinite;
}

.pulse-ring-2 {
    transform-origin: center;
    animation: pulseRing 3s ease-in-out infinite 0.5s;
}

@keyframes pulseRing {
    0%, 100% { opacity: 0.2; transform: scale(0.95); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

.pulse-dot {
    transform-origin: center;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.radar-line {
    transform-origin: center;
    animation: radarSpin 8s linear infinite;
}

@keyframes radarSpin {
    0% { transform: rotate(0deg); opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { transform: rotate(360deg); opacity: 0.3; }
}

/* ============================================
   CTA Section Enhancements
   ============================================ */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(234, 88, 12, 0.08) 0%, transparent 60%);
    animation: ctaPulse 5s ease-in-out infinite;
    pointer-events: none;
    border-radius: 50%;
}

@keyframes ctaPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.6; }
}

/* ============================================
   Badge Animation
   ============================================ */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(234, 88, 12, 0.12);
    border: 1px solid rgba(234, 88, 12, 0.25);
    border-radius: 999px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent, #ea580c);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ea580c;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
/* =============================================================
   Trust Section - Simplified styles
   ============================================================= */
.trust-section {
    position: relative;
    padding: 80px 0;
    background: #0e111c;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.trust-card {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 16px;
    padding: 32px 28px;
    backdrop-filter: blur(8px);
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    color: #ffffff !important;
}

.trust-card-icon {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

.trust-card-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 12px;
}

.trust-card-desc {
    font-size: 13px !important;
    color: rgba(255,255,255,0.55) !important;
    line-height: 1.6;
    margin-bottom: 16px;
}




.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(234, 88, 12, 0.12) !important;
    border: 1px solid rgba(234, 88, 12, 0.25) !important;
    border-radius: 999px;
    padding: 6px 18px;
    font-size: 12px !important;
    font-weight: 500;
    color: #ea580c !important;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ea580c !important;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Mobile responsive */
@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   Trust Section - VISIBLE fix
   ================================================= */
.trust-section {
    position: relative;
    padding: 80px 24px;
    background: #0b0f16 !important;
    border-top: 1px solid rgba(234, 88, 12, 0.15);
    border-bottom: 1px solid rgba(234, 88, 12, 0.08);
    z-index: 1;
    min-height: 400px;
}

.trust-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    max-width: 1160px;
    margin: 40px auto 0!important;
    padding: 0 !important;
}

.trust-card {
    background: #121825 !important;
    border: 1px solid rgba(234, 88, 12, 0.25) !important;
    border-radius: 16px;
    padding: 36px 30px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2) !important;
    min-height: 280px;
}

.trust-card:hover {
    border-color: #ea580c !important;
    box-shadow: 0 8px 32px rgba(234,88,12,0.15) !important;
    transform: translateY(-4px);
}

.trust-card-title {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 16px 0 12px !important;
}

.trust-card-desc {
    color: rgba(255,255,255,0.6) !important;
    font-size: 14px !important;
    line-height: 1.6;
    margin-bottom: 16px !important;
}



.trust-card-icon {
    margin-bottom: 8px;
}

.trust-section .section-desc {
    color: rgba(255,255,255,0.5) !important;
    font-size: 15px !important;
}

/* Mobile */
@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: 1fr !important;
    }
    .trust-card {
        min-height: auto;
    }
}
/* ============================================
   Trust Section Bullets - Margin Fix
   ============================================ */




/* Remove duplicate old rules */

/* ============================================
   Trust Section Bullets - FINAL CLEAN VERSION
   Overrides all previous trust-list rules
   ============================================ */
.trust-list {
    list-style: none !important;
    padding: 0 0 0 0 !important;
    margin: 12px 0 0 0 !important;
}

.trust-list li {
    padding: 10px 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: rgba(255,255,255,0.75) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

.trust-list li:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.trust-check {
    color: #fb923c !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}
/* ============================================
   FOOTER — Enhanced Design
   ============================================ */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, rgba(10, 14, 23, 0.98) 0%, #060912 100%);
    border-top: 1px solid rgba(234, 88, 12, 0.12);
    z-index: 2;
    overflow: hidden;
}

/* Subtle glow orbs in footer */
.site-footer::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Accent bar */
.footer-accent-bar {
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(234, 88, 12, 0.3) 20%,
        #ea580c 50%, 
        rgba(234, 88, 12, 0.3) 80%,
        transparent 100%
    );
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: var(--max-width, 1160px);
    margin: 0 auto;
    padding: 64px 24px 0;
    position: relative;
    z-index: 1;
}

/* Grid layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 32px;
    margin-bottom: 48px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Brand column */
.footer-brand {
    position: relative;
}

.footer-logo img,
.footer-logo .custom-logo {
    max-height: 42px;
    width: auto;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #ea580c, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-top: 14px;
    line-height: 1.7;
    max-width: 320px;
}

/* Social links */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none !important;
}

.social-link:hover {
    background: rgba(234, 88, 12, 0.12);
    border-color: rgba(234, 88, 12, 0.35);
    color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(234, 88, 12, 0.15);
}

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

/* Column titles */
.footer-col {
    position: relative;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: #ea580c;
    border-radius: 2px;
}

/* Footer links */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    padding: 0;
    line-height: 1.4;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #ea580c;
    padding-left: 4px;
}

/* Contact items */
.footer-links .contact-icon {
    margin-right: 8px;
    color: #ea580c;
    font-size: 13px;
    display: inline-block;
    width: 16px;
    text-align: center;
}

.footer-links li:has(.contact-icon) {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.footer-links li:has(.contact-icon) a,
.footer-links li:has(.contact-icon) .footer-address {
    flex: 1;
    color: rgba(255,255,255,0.5);
}

.footer-links li:has(.contact-icon) a:hover {
    color: #ea580c;
    padding-left: 0;
}

.footer-address {
    font-size: 12px;
    line-height: 1.6;
    display: inline-block;
    color: rgba(255,255,255,0.45);
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 20px 0;
    position: relative;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255,255,255,0.25);
}

@media (max-width: 600px) {
    .footer-bottom-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

.footer-copyright {
    color: rgba(255,255,255,0.3);
}

.footer-confidential {
    color: rgba(255,255,255,0.12);
    letter-spacing: 0.5px;
}
/* ============================================
   SERVICES PAGE — Enhanced Design & Animations
   ============================================ */

/* Background ambient glow for the entire services section */
body.page-id-565 .wp-block-group,
body.page-id-565 .wp-block-cover {
    position: relative;
}

body.page-id-565 .wp-block-columns:first-of-type .wp-block-column:first-child .wp-block-group {
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================
   Service Cards - Enhanced
   ============================================ */
body.page-id-565 .orel-service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1) !important;
    border-color: rgba(255,122,0,0.15) !important;
}

/* Corner glow effect on hover */
body.page-id-565 .orel-service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,122,0,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

body.page-id-565 .orel-service-card:hover::after {
    opacity: 1;
}

/* Card image zoom enhancement */
body.page-id-565 .orel-service-card img {
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), 
                filter 0.5s ease !important;
    border-radius: 18px !important;
}

body.page-id-565 .orel-service-card:hover img {
    transform: scale(1.06) !important;
    filter: brightness(1.1) saturate(1.1) !important;
}

/* Featured card (VAPT) gets extra treatment */
body.page-id-565 .orel-service-card--featured {
    border-color: rgba(255,122,0,0.4) !important;
    background: linear-gradient(135deg, #141414 0%, #1a0f0a 100%) !important;
}

body.page-id-565 .orel-service-card--featured::before {
    background: linear-gradient(180deg, rgba(255,122,0,0.12), rgba(255,122,0,0)) !important;
}

body.page-id-565 .orel-service-card--featured:hover {
    border-color: #ff7a00 !important;
    box-shadow: 0 20px 44px rgba(0,0,0,0.42), 0 0 40px rgba(255,122,0,0.08) !important;
}

/* ============================================
   Stat Cards (3 / 24/7 / PH) - Animated
   ============================================ */
body.page-id-565 .wp-block-columns .wp-block-column .wp-block-group {
    transition: all 0.3s ease;
}

body.page-id-565 .wp-block-columns .wp-block-column .wp-block-group:hover {
    transform: translateY(-4px);
    border-color: rgba(255,122,0,0.3) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

body.page-id-565 .has-accent-3-color.has-large-font-size {
    display: inline-block;
    animation: statPulse 3s ease-in-out infinite;
}

@keyframes statPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

/* ============================================
   Benefit Feature Cards (◈ ⬢ ✦)
   ============================================ */
body.page-id-565 .wp-block-columns:last-of-type .wp-block-column .wp-block-group {
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}

body.page-id-565 .wp-block-columns:last-of-type .wp-block-column .wp-block-group:hover {
    transform: translateY(-6px);
    border-color: rgba(255,122,0,0.35) !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

body.page-id-565 .wp-block-columns:last-of-type .wp-block-column .wp-block-group .has-large-font-size {
    display: inline-block;
    transition: transform 0.3s ease;
}

body.page-id-565 .wp-block-columns:last-of-type .wp-block-column .wp-block-group:hover .has-large-font-size {
    transform: scale(1.2) rotate(10deg);
}

/* ============================================
   Section Entrance Animations
   ============================================ */
/* Page header */
body.page-id-565 .wp-block-designsetgo-section {
    animation: sectionFadeIn 0.8s ease forwards;
}

@keyframes sectionFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Core services header */
body.page-id-565 .wp-block-group > .wp-block-heading.has-text-align-center:nth-child(2) {
    animation: fadeSlideUp 0.7s ease 0.2s both;
}

body.page-id-565 .wp-block-group > p.has-text-align-center {
    animation: fadeSlideUp 0.7s ease 0.3s both;
}

body.page-id-565 .wp-block-group h6.wp-block-heading {
    animation: fadeSlideUp 0.5s ease both;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Columns stagger animation */
body.page-id-565 .wp-block-columns .wp-block-column {
    animation: cardStaggerIn 0.6s ease both;
}

body.page-id-565 .wp-block-columns .wp-block-column:nth-child(1) { animation-delay: 0.1s; }
body.page-id-565 .wp-block-columns .wp-block-column:nth-child(2) { animation-delay: 0.2s; }
body.page-id-565 .wp-block-columns .wp-block-column:nth-child(3) { animation-delay: 0.3s; }

@keyframes cardStaggerIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Floating Particles Background
   ============================================ */
body.page-id-565 .wp-block-designsetgo-section {
    position: relative;
    overflow: hidden;
}

body.page-id-565 .wp-block-designsetgo-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,122,0,0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,122,0,0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Subtitle accent underline animation */
body.page-id-565 .has-accent-3-color.has-small-font-size {
    display: inline-block;
    position: relative;
}

body.page-id-565 .has-accent-3-color.has-small-font-size::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ff7a00;
    transition: width 0.5s ease;
}

body.page-id-565 .orel-service-card:hover .has-accent-3-color.has-small-font-size::after {
    width: 100%;
}

/* ============================================
   CTA Section Enhancement
   ============================================ */
body.page-id-565 .wp-block-group:last-of-type {
    animation: fadeSlideUp 0.7s ease 0.4s both;
}

body.page-id-565 .wp-block-group:last-of-type .wp-block-button__link {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.page-id-565 .wp-block-group:last-of-type .wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,122,0,0.25);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    body.page-id-565 .wp-block-columns .wp-block-column {
        animation-delay: 0s !important;
    }
    
    body.page-id-565 .orel-service-card {
        margin-bottom: 20px;
    }
}
