/*
Theme Name: UEMT
Theme URI: https://uemt.ma
Author: Ahmed Sabbagh
Description: Custom WordPress theme made especially for UEMT - Union des Entreprises Média à Tétouan.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: uemt
*/


        @font-face {
            font-family: 'ArabSwell';
            src: url('fonts/arabswell.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }
        
        @font-face {
            font-family: 'ArabSwell';
            src: url('fonts/arabswell.ttf') format('truetype');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }
        
        @font-face {
            font-family: 'ArabSwell';
            src: url('fonts/arabswell.ttf') format('truetype');
            font-weight: 900;
            font-style: normal;
            font-display: swap;
        }
        
         :root {
            --red-dark: #8B0000;
            --red-bright: #B22222;
            --red-medium: #A01515;
            --white: #FFFFFF;
            --black: #000000;
            --light-gray: #D3D3D3;
            --lighter-gray: #f0ece6;
            --gold-beige: #F5E6C8;
            --gold-accent: #C9A96E;
            --text-dark: #1a1a1a;
            --text-medium: #444;
            --text-light: #666;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
            --shadow-xl: 0 12px 50px rgba(0, 0, 0, 0.2);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.5s ease;
            --font-heading: 'Cairo', 'Tajawal', sans-serif;
            --font-body: 'Tajawal', 'Cairo', sans-serif;
            --max-width: 1240px;
            --header-height: 90px;
            --header-height-scrolled: 70px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--header-height);
            overflow-x: hidden;
        }
        
        body {
            font-family: var(--font-body);
            direction: rtl;
            text-align: right;
            background-color: #fafaf8;
            color: var(--text-dark);
            line-height: 1.75;
            font-size: 16px;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        /* ==================== TOP BAR ==================== */
        
        .top-bar {
            background-color: #1a1a1a;
            color: #ccc;
            font-size: 13px;
            padding: 8px 0;
            z-index: 1001;
            position: relative;
            font-family: var(--font-body);
        }
        
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .top-bar a {
            color: #ddd;
            text-decoration: none;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }
        
        .top-bar a:hover {
            color: var(--gold-accent);
        }
        
        .top-bar .top-contact {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .top-bar .top-contact span {
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        
        .top-bar .top-contact i {
            color: var(--gold-accent);
            font-size: 11px;
        }
        
        .top-bar .top-social {
            display: flex;
            gap: 12px;
            align-items: center;
        }
        
        .top-bar .top-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #333;
            color: #ccc;
            font-size: 13px;
            transition: all var(--transition-fast);
        }
        
        .top-bar .top-social a:hover {
            background-color: var(--red-bright);
            color: #fff;
            transform: translateY(-2px);
        }
        /* ==================== MAIN HEADER ==================== */
        
        .main-header {
            background: linear-gradient(135deg, var(--red-dark) 0%, #6B0000 60%, #4a0000 100%);
            position: sticky;
            top: 0;
            z-index: 1003;
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-normal);
            height: var(--header-height);
            display: flex;
            align-items: center;
        }
        
        .main-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        
        .header-logo-area {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }
        
        .header-logo-area img {
            height: 58px;
            width: auto;
            border-radius: var(--radius-sm);
            background: #fff;
            padding: 4px;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
            transition: all var(--transition-normal);
        }
        
        .header-logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        
        .header-logo-text .union-name-ar {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 18px;
            color: #fff;
            letter-spacing: 0.5px;
        }
        
        .header-logo-text .union-name-fr {
            font-size: 10px;
            color: var(--gold-beige);
            letter-spacing: 1.5px;
            font-weight: 500;
            text-transform: uppercase;
        }
        /* Navigation */
        
        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .main-nav ul {
            list-style: none;
            display: flex;
            gap: 4px;
            align-items: center;
            margin: 0;
            padding: 0;
        }
        
        .main-nav ul li a {
            display: block;
            padding: 10px 16px;
            color: #fff;
            text-decoration: none;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 14.5px;
            border-radius: 25px;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.3px;
            position: relative;
        }
        
        .main-nav ul li a:hover,
        .main-nav ul li a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: #fff;
        }
        
        .main-nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60%;
            height: 2px;
            background-color: var(--gold-beige);
            border-radius: 2px;
            transition: transform var(--transition-normal);
        }
        
        .main-nav ul li a:hover::after,
        .main-nav ul li a.active::after {
            transform: translateX(-50%) scaleX(1);
        }
        /* Hamburger */
        
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1005;
        }
        
        .hamburger-btn span {
            display: block;
            width: 28px;
            height: 3px;
            background: #fff;
            margin: 6px 0;
            border-radius: 3px;
            transition: all var(--transition-normal);
        }
        
        .hamburger-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 7px);
        }
        
        .hamburger-btn.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -7px);
        }
        /* ==================== CONTAINER ==================== */
        
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }
        /* ==================== HERO SECTION ==================== */
        
        .hero-section {
            background: linear-gradient(160deg, #8B0000 0%, #5c0000 40%, #2d0000 100%);
            color: #fff;
            padding: 70px 0 80px;
            position: relative;
            overflow: hidden;
            min-height: 480px;
            display: flex;
            align-items: center;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -120px;
            left: -120px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            right: -60px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(245, 230, 200, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .hero-section .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.4;
            background-image: radial-gradient(1px 1px at 15% 25%, rgba(255, 255, 255, 0.5) 50%, transparent 100%), radial-gradient(1px 1px at 75% 60%, rgba(255, 255, 255, 0.4) 50%, transparent 100%), radial-gradient(1.5px 1.5px at 40% 80%, rgba(255, 255, 255, 0.3) 50%, transparent 100%), radial-gradient(1px 1px at 85% 15%, rgba(255, 255, 255, 0.5) 50%, transparent 100%), radial-gradient(1.5px 1.5px at 60% 45%, rgba(245, 230, 200, 0.5) 50%, transparent 100%), radial-gradient(1px 1px at 25% 70%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }
        
        .hero-text {
            flex: 1;
            min-width: 280px;
        }
        
        .hero-text .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 20px;
            color: var(--gold-beige);
            font-family: var(--font-heading);
        }
        
        .hero-text h1 {
            font-family: 'ArabSwell', var(--font-heading);
            font-size: 42px;
            font-weight: 900;
            line-height: 1.25;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
        
        .hero-text h1 .gold-highlight {
            color: var(--gold-beige);
            display: inline;
        }
        
        .hero-text .hero-subtitle {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 28px;
            line-height: 1.8;
            max-width: 550px;
            font-weight: 400;
        }
        
        .hero-text .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: 30px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all var(--transition-normal);
            letter-spacing: 0.4px;
            white-space: nowrap;
        }
        
        .btn-primary {
            background-color: #fff;
            color: var(--red-dark);
            box-shadow: var(--shadow-md);
        }
        
        .btn-primary:hover {
            background-color: var(--gold-beige);
            color: #5c0000;
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }
        
        .btn-outline {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }
        
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            transform: translateY(-3px);
        }
        
        .hero-logo-display {
            flex-shrink: 0;
            text-align: center;
        }
        
        .hero-logo-display img {
            width: 180px;
            height: auto;
            border-radius: var(--radius-lg);
            background: #fff;
            padding: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            animation: floatLogo 4s ease-in-out infinite;
        }
        
        @keyframes floatLogo {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-14px);
            }
        }
        /* ==================== SECTION STYLES ==================== */
        
        .section {
            padding: 70px 0;
            position: relative;
        }
        
        .section-alt {
            background-color: #f5f3ef;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header .section-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--red-dark), var(--red-bright));
            color: #fff;
            font-size: 22px;
            margin-bottom: 16px;
            box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
        }
        
        .section-header h2 {
            font-family: var(--font-heading);
            font-size: 34px;
            font-weight: 800;
            color: var(--red-dark);
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        
        .section-header .section-subtitle {
            color: var(--text-medium);
            font-size: 15px;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 400;
        }
        
        .section-header .divider {
            display: block;
            width: 70px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold-accent), var(--gold-beige), var(--gold-accent));
            margin: 14px auto 0;
            border-radius: 3px;
        }
        /* ==================== ABOUT SECTION ==================== */
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }
        
        .about-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: var(--shadow-sm);
            border: 1px solid #eee;
            transition: all var(--transition-normal);
        }
        
        .about-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        
        .about-card h3 {
            font-family: var(--font-heading);
            color: var(--red-dark);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .about-card h3 i {
            color: var(--gold-accent);
            font-size: 20px;
        }
        
        .about-card p {
            color: var(--text-medium);
            line-height: 1.9;
            font-size: 15px;
        }
        
        .about-quote {
            background: linear-gradient(135deg, var(--red-dark), #5c0000);
            color: #fff;
            border-radius: var(--radius-lg);
            padding: 36px;
            text-align: center;
            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 500;
            line-height: 1.9;
            position: relative;
            box-shadow: var(--shadow-lg);
        }
        
        .about-quote::before {
            content: '\201D';
            font-size: 80px;
            color: rgba(255, 255, 255, 0.15);
            position: absolute;
            top: 10px;
            right: 20px;
            line-height: 1;
            font-family: serif;
        }
        
        .about-quote .quote-text {
            position: relative;
            z-index: 1;
        }
        /* ==================== STATS ==================== */
        
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 4px;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
            background: #fff;
            border-radius: var(--radius-md);
            padding: 28px 6px;
            box-shadow: var(--shadow-sm);
            border: 1px solid #eee;
            transition: all var(--transition-normal);
        }
        
        .stat-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        
        .stat-item .stat-number {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 900;
            color: var(--red-bright);
            display: block;
        }
        
        .stat-item .stat-label {
            color: var(--text-medium);
            font-size: 14px;
            font-weight: 500;
            margin-top: 4px;
        }
        
        .stat-item .stat-icon {
            font-size: 28px;
            color: var(--gold-accent);
            margin-bottom: 8px;
        }
        /* ==================== ROYAL MESSAGE SECTION ==================== */
        
        .royal-message-section {
            padding: 76px 0;
            background: linear-gradient(180deg, #fafaf8 0%, #f5f3ef 100%);
            position: relative;
            overflow: hidden;
        }
        
        .royal-message-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 12% 18%, rgba(139, 0, 0, 0.06), transparent 28%), radial-gradient(circle at 88% 82%, rgba(201, 169, 110, 0.16), transparent 32%);
            pointer-events: none;
        }
        
        .royal-message-card {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(280px, 380px) 1fr;
            align-items: stretch;
            background: linear-gradient(135deg, #fffdf8 0%, #fff7e8 48%, #ffffff 100%);
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: 1px solid rgba(201, 169, 110, 0.38);
            box-shadow: var(--shadow-xl);
        }
        
        .royal-message-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--gold-accent), var(--red-bright), var(--gold-accent));
            z-index: 3;
        }
        
        .royal-portrait-area {
            min-height: 420px;
            padding: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, var(--red-dark) 0%, #5c0000 58%, #2d0000 100%);
            position: relative;
            overflow: hidden;
        }
        
        .royal-portrait-area::before {
            content: '✦';
            position: absolute;
            top: 22px;
            right: 24px;
            font-size: 170px;
            line-height: 1;
            color: rgba(245, 230, 200, 0.08);
            font-family: serif;
            transform: rotate(12deg);
        }
        
        .royal-portrait-area::after {
            content: '';
            position: absolute;
            inset: 18px;
            border: 1px solid rgba(245, 230, 200, 0.18);
            border-radius: 22px;
            pointer-events: none;
        }
        
        .royal-portrait-frame {
            position: relative;
            z-index: 1;
            width: min(100%, 285px);
            padding: 10px;
            border-radius: 24px;
            background: linear-gradient(135deg, rgba(245, 230, 200, 0.98), rgba(201, 169, 110, 0.95));
            box-shadow: 0 22px 55px rgba(0, 0, 0, 0.38);
        }
        
        .royal-portrait-frame::before {
            content: '';
            position: absolute;
            inset: -10px;
            border: 1px solid rgba(245, 230, 200, 0.42);
            border-radius: 30px;
            pointer-events: none;
        }
        
        .royal-portrait-frame img {
            width: 100%;
            aspect-ratio: 3 / 4;
            object-fit: cover;
            object-position: top center;
            display: block;
            border-radius: 17px;
            background: #e8e5df;
        }
        
        .royal-quote-area {
            position: relative;
            padding: 44px 50px 42px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
        }
        
        .royal-quote-area::before {
            content: '\201D';
            position: absolute;
            top: 18px;
            left: 34px;
            font-size: 150px;
            line-height: 1;
            color: rgba(139, 0, 0, 0.06);
            font-family: Georgia, serif;
            font-weight: 700;
            pointer-events: none;
        }
        
        .royal-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            background: rgba(139, 0, 0, 0.07);
            color: var(--red-dark);
            border: 1px solid rgba(139, 0, 0, 0.12);
            padding: 7px 16px;
            border-radius: 30px;
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 800;
            margin-bottom: 16px;
        }
        
        .royal-kicker i {
            color: var(--gold-accent);
        }
        
        .royal-quote {
            position: relative;
            z-index: 1;
            margin: 0;
            padding: 0;
            border: none;
        }
        
        .royal-quote p {
            color: var(--text-dark);
            font-size: 20px;
            line-height: 2.08;
            font-weight: 600;
            margin-bottom: 12px;
            font-family: var(--font-heading);
        }
        
        .royal-source {
            margin-top: 22px;
            padding: 15px 18px;
            border-radius: var(--radius-md);
            background: #006233;
            border-right: 4px solid var(--gold-accent);
            display: flex;
            gap: 12px;
            align-items: flex-start;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            line-height: 1.8;
            font-family: var(--font-heading);
        }
        
        .royal-source i {
            margin-top: 5px;
            flex-shrink: 0;
        }
        /* ==================== EXECUTIVE OFFICE ==================== */
        
        .executive-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
        }
        
        .executive-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 28px 20px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 2px solid transparent;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }
        
        .executive-card:hover {
            border-color: var(--red-bright);
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }
        
        .executive-card .exec-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--red-dark), var(--red-bright));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 700;
            margin: 0 auto 16px;
            font-family: var(--font-heading);
            box-shadow: 0 6px 18px rgba(139, 0, 0, 0.25);
            overflow: hidden;
        }
        
        .executive-card .exec-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            border-radius: 50%;
            display: block;
        }
        
        .executive-card .exec-position {
            display: inline-block;
            background: var(--gold-beige);
            color: #5c3d00;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            font-family: var(--font-heading);
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        
        .executive-card h4 {
            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 6px 0;
        }
        
        .executive-card .exec-platform {
            font-size: 13px;
            color: var(--red-bright);
            font-weight: 600;
            direction: ltr;
            display: inline-block;
            background: #fef5f5;
            padding: 4px 12px;
            border-radius: 15px;
            margin-top: 4px;
			text-decoration: none;
        }
        /* ==================== MEMBER COMPANIES ==================== */
        
        .companies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 24px;
        }
        
        .company-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 30px 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid #eee;
            transition: all var(--transition-normal);
            display: flex;
            flex-direction: column;
            gap: 14px;
            position: relative;
            overflow: hidden;
        }
        
        .company-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, var(--red-bright), var(--gold-accent));
            border-radius: 0 5px 5px 0;
            transition: width var(--transition-normal);
        }
        
        .company-card:hover::before {
            width: 8px;
        }
        
        .company-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        
        .company-card .company-number {
            font-family: var(--font-heading);
            font-size: 50px;
            font-weight: 900;
            color: rgba(139, 0, 0, 0.08);
            position: absolute;
            top: 10px;
            left: 16px;
            line-height: 1;
            pointer-events: none;
        }
        
        .company-card .company-header {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        
        .company-card .company-icon {
            width: 50px;
            height: 50px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--red-dark), var(--red-bright));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .company-card h4 {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.3;
        }
        
        .company-card .company-platform {
            font-size: 13px;
            color: var(--red-bright);
            font-weight: 600;
            background: #fef5f5;
            display: inline-block;
            padding: 3px 10px;
            border-radius: 12px;
            margin-top: 2px;
        }
        
        .company-card .company-info {
            font-size: 13.5px;
            color: var(--text-medium);
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        
        .company-card .company-info span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .company-card .company-info i {
            color: var(--gold-accent);
            width: 18px;
            text-align: center;
            font-size: 12px;
        }
        
        .company-card .company-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--red-bright);
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            font-family: var(--font-heading);
            transition: color var(--transition-fast);
            direction: ltr;
            justify-content: flex-end;
            margin-top: auto;
        }
        
        .company-card .company-link:hover {
            color: #5c0000;
            text-decoration: underline;
        }
        /* ==================== GALLERY CAROUSEL ==================== */
        
        .gallery-carousel {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-lg);
            width: 100%;
            min-height: 220px;
        }
        
        .gallery-track {
            display: flex;
            gap: 16px;
            transition: transform 0.5s ease-in-out;
            width: max-content;
            will-change: transform;
            transform: translate3d(0, 0, 0);
            -webkit-transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }
        
        .gallery-item {
            flex-shrink: 0;
            flex: 0 0 auto;
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            cursor: pointer;
            background: #e8e5df;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-normal);
            min-height: 180px;
        }
        
        @supports not (aspect-ratio: 4 / 3) {
            .gallery-item {
                height: 0;
                padding-top: 75%;
            }
            .gallery-item img,
            .gallery-item .gallery-overlay {
                position: absolute;
            }
            .gallery-item img {
                inset: 0;
            }
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-lg);
            z-index: 2;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform var(--transition-slow);
        }
        
        .gallery-item:hover img {
            transform: scale(1.08);
        }
        
        .gallery-item .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
            color: #fff;
            padding: 16px;
            opacity: 0;
            transform: translateY(10px);
            transition: all var(--transition-normal);
            text-align: center;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 13px;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
            transform: translateY(0);
        }
        /* Carousel Navigation Arrows */
        
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 53px;
            height: 53px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            cursor: pointer;
            font-size: 24px;
            color: var(--red-dark);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-fast);
        }
        
        .carousel-arrow:hover {
            background: #fff;
            box-shadow: var(--shadow-lg);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-arrow:active {
            transform: translateY(-50%) scale(0.95);
        }
        
        .carousel-arrow.carousel-prev {
            right: 8px;
        }
        
        .carousel-arrow.carousel-next {
            left: 8px;
        }
        
        .carousel-arrow:disabled {
            opacity: 1;
            cursor: not-allowed;
            pointer-events: none;
        }
        /* Carousel Dots */
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 24px;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
            padding: 0;
        }
        
        .carousel-dot.active {
            background: var(--red-bright);
            transform: scale(1.3);
            box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3);
        }
        
        .carousel-dot:hover {
            background: var(--red-medium);
        }
        /* ==================== LIGHTBOX ==================== */
        
        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.92);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition-normal);
        }
        
        .lightbox-overlay.active {
            opacity: 1;
            pointer-events: all;
        }
        
        .lightbox-overlay img {
            max-width: 90vw;
            max-height: 85vh;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
            transform: scale(0.9);
            transition: transform var(--transition-normal);
        }
        
        .lightbox-overlay.active img {
            transform: scale(1);
        }
        
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.15);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 22px;
            cursor: pointer;
            transition: all var(--transition-fast);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
        }
        
        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }
        
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
            transition: all var(--transition-fast);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
        }
        
        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .lightbox-prev {
            left: 20px;
        }
        
        .lightbox-next {
            right: 20px;
        }
        /* ==================== NEWS SECTION ==================== */
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
        }
        
        .news-card {
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-normal);
            border: 1px solid #eee;
        }
        
        .news-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }
        
        .news-card .news-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            background: #e8e5df;
        }
        
        .news-card .news-body {
            padding: 20px;
        }
        
        .news-card .news-date {
            font-size: 12px;
            color: var(--red-bright);
            font-weight: 600;
            font-family: var(--font-heading);
        }
        
        .news-card h4 {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 8px 0;
            line-height: 1.4;
        }
        
        .news-card p {
            font-size: 13.5px;
            color: var(--text-medium);
            line-height: 1.7;
        }
        /* ==================== CONTACT SECTION ==================== */
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }
        
        .contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .contact-info-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 20px;
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: flex-start;
            gap: 14px;
            border: 1px solid #eee;
            transition: all var(--transition-normal);
        }
        
        .contact-info-card:hover {
            box-shadow: var(--shadow-md);
        }
        
        .contact-info-card .contact-icon-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--red-dark), var(--red-bright));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        
        .contact-info-card h5 {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 2px;
        }
        
        .contact-info-card span {
            font-size: 13px;
            color: var(--text-medium);
        }
        
        .contact-form {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: var(--shadow-md);
            border: 1px solid #eee;
        }
        
        .contact-form h3 {
            font-family: var(--font-heading);
            color: var(--red-dark);
            margin-bottom: 20px;
            font-weight: 700;
            font-size: 20px;
        }
        
        .form-group {
            margin-bottom: 16px;
        }
        
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            font-family: var(--font-heading);
            color: var(--text-dark);
            font-size: 14px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0dcd5;
            border-radius: var(--radius-sm);
            font-family: var(--font-body);
            font-size: 14px;
            transition: all var(--transition-fast);
            background: #fafaf8;
            resize: vertical;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--red-bright);
            box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.08);
            background: #fff;
        }
        
        .form-group textarea {
            min-height: 130px;
        }
        
        .btn-submit {
            width: 100%;
            background: linear-gradient(135deg, var(--red-dark), var(--red-bright));
            color: #fff;
            padding: 14px;
            border: none;
            border-radius: 30px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all var(--transition-normal);
            letter-spacing: 0.5px;
        }
        
        .btn-submit:hover {
            background: linear-gradient(135deg, #6B0000, #8B0000);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        /* ==================== FOOTER ==================== */
        
        .site-footer {
            background: #1a1a1a;
            color: #bbb;
            padding: 50px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-col h4 {
            color: #fff;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 17px;
            margin-bottom: 16px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40px;
            height: 2px;
            background: var(--gold-accent);
            border-radius: 2px;
        }
        
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-col ul li {
            margin-bottom: 8px;
        }
        
        .footer-col ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color var(--transition-fast);
            font-size: 14px;
        }
        
        .footer-col ul li a:hover {
            color: var(--gold-accent);
        }
        
        .footer-bottom {
            text-align: center;
            border-top: 1px solid #333;
            padding-top: 20px;
            font-size: 13px;
            color: #888;
        }
        
        .footer-logo-mini {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }
        
        .footer-logo-mini img {
            height: 40px;
            border-radius: 6px;
            background: #fff;
            padding: 3px;
        }
        
        .footer-logo-mini span {
            color: #fff;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 14px;
        }
        /* ==================== BACK TO TOP ==================== */
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--red-bright);
            color: #fff;
            border: none;
            cursor: pointer;
            font-size: 18px;
            z-index: 900;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            opacity: 0;
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .back-to-top.visible {
            opacity: 1;
            pointer-events: all;
        }
        
        .back-to-top:hover {
            background: var(--red-dark);
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
        }
        
        @media (max-width: 900px) {
            .royal-message-card {
                grid-template-columns: 1fr;
            }
            .royal-portrait-area {
                min-height: auto;
                padding: 32px 24px;
            }
            .royal-portrait-frame {
                max-width: 240px;
            }
            .royal-quote-area {
                padding: 34px 28px 32px;
            }
            .royal-quote p {
                font-size: 17px;
                line-height: 2;
            }
        }
        
        @media (max-width: 480px) {
            .royal-message-section {
                padding: 42px 0;
            }
            .royal-message-card {
                border-radius: var(--radius-lg);
            }
            .royal-portrait-area {
                padding: 26px 18px;
            }
            .royal-portrait-frame {
                max-width: 205px;
                border-radius: 20px;
            }
            .royal-quote-area {
                padding: 28px 20px 26px;
            }
            .royal-kicker {
                font-size: 12px;
                padding: 6px 13px;
            }
            .royal-quote p {
                font-size: 15.5px;
                line-height: 1.95;
            }
            .royal-source {
                font-size: 12.5px;
                padding: 12px 14px;
            }
        }
        /* ==================== RESPONSIVE ==================== */
        
        @media (max-width: 1024px) {
            .hero-text h1 {
                font-size: 32px;
            }
            .hero-logo-display img {
                width: 140px;
            }
            .about-grid {
                grid-template-columns: 1fr;
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .top-bar .container {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            .top-bar .top-contact {
                display: none;
            }
            .main-nav ul {
                position: fixed;
                top: 0;
                right: 0;
                width: 280px;
                height: 100vh;
                background: #1a1a1a;
                flex-direction: column;
                padding: 90px 20px 30px;
                gap: 8px;
                transform: translateX(100%);
                transition: transform var(--transition-normal);
                z-index: 1004;
                box-shadow: var(--shadow-xl);
            }
            .header-logo-text {
                display: none;
            }
            .main-nav ul.active {
                transform: translateX(0);
            }
            .main-nav ul li a {
                padding: 12px 16px;
                font-size: 15px;
                border-radius: 8px;
                display: block;
                text-align: right;
            }
            .hamburger-btn {
                display: block;
            }
            .hero-content {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }
            .hero-text h1 {
                font-size: 26px;
            }
            .hero-text .hero-subtitle {
                max-width: 100%;
                font-size: 15px;
            }
            .hero-logo-display img {
                width: 120px;
            }
            .hero-section {
                padding: 40px 0 50px;
                min-height: auto;
            }
            .gallery-track {
                gap: 12px;
            }
            .carousel-arrow {
                width: 43px;
                height: 43px;
                font-size: 19px;
            }
            .carousel-arrow.carousel-prev {
                right: 6px;
            }
            .carousel-arrow.carousel-next {
                left: 6px;
            }
            .companies-grid {
                grid-template-columns: 1fr;
            }
            .executive-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .section-header h2 {
                font-size: 26px;
            }
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .news-grid {
                grid-template-columns: 1fr;
            }
            .lightbox-nav {
                width: 38px;
                height: 38px;
                font-size: 16px;
            }
            .lightbox-prev {
                left: 8px;
            }
            .lightbox-next {
                right: 8px;
            }
        }
        
        @media (max-width: 480px) {
            .executive-grid {
                grid-template-columns: 1fr;
            }
            .gallery-track {
                gap: 8px;
            }
            .carousel-arrow {
                width: 38px;
                height: 38px;
                font-size: 17px;
            }
            .carousel-arrow.carousel-prev {
                right: 4px;
            }
            .carousel-arrow.carousel-next {
                left: 4px;
            }
            .hero-text h1 {
                font-size: 22px;
            }
            .hero-text .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
            .section {
                padding: 40px 0;
            }
            .company-card {
                padding: 20px 16px;
            }
            .stats-row {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .stat-item .stat-number {
                font-size: 28px;
            }
        }
        /* Mobile overlay */
        
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1002;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition-normal);
        }
        
        .mobile-overlay.active {
            opacity: 1;
            pointer-events: all;
        }
    
/* ==================== WORDPRESS INTEGRATION ==================== */
.site-logo-link,
.footer-logo-link,
.hero-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.site-logo-link img,
.custom-logo,
.footer-logo-mini img,
.hero-logo-display img {
    object-fit: contain;
}

.uemt-logo-placeholder {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--red-dark), var(--red-bright));
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    padding: 5px;
}

.hero-logo-display .uemt-logo-placeholder {
    width: 180px;
    height: 180px;
    font-size: 22px;
}

.footer-logo-mini .uemt-logo-placeholder {
    width: 40px;
    height: 40px;
    font-size: 10px;
}

.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.main-nav .current-menu-ancestor > a {
    background: var(--red-dark);
    color: #fff;
}

.uemt-empty-state {
    background: #fff;
    border: 1px dashed rgba(139, 0, 0, 0.25);
    border-radius: var(--radius-md);
    color: var(--text-medium);
    padding: 22px;
    text-align: center;
    font-family: var(--font-heading);
    grid-column: 1 / -1;
}

.exec-avatar-fallback {
    color: #fff;
    line-height: 1;
}

.gallery-item .gallery-overlay strong,
.gallery-item .gallery-overlay span {
    display: block;
}

.gallery-item .gallery-overlay span {
    margin-top: 4px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.45;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.uemt-mb-20 {
    margin-bottom: 20px;
}

.uemt-block-mt-2 {
    display: block;
    margin-top: 2px;
}

.footer-description {
    font-size: 13px;
    color: #aaa;
    line-height: 1.8;
}

/* ==================== WORDPRESS NEWS / BLOG / SINGLE ==================== */
.news-card .news-image-link {
    display: block;
    overflow: hidden;
}

.news-card .news-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-dark);
    font-size: 34px;
}

.news-card h4 a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.news-card h4 a:hover {
    color: var(--red-bright);
}

.uemt-news-more-wrap {
    margin-top: 24px;
    text-align: center;
}

.uemt-news-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.uemt-news-more-link:hover {
    color: var(--red-bright);
    transform: translateY(-1px);
}

.uemt-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.uemt-pagination {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.uemt-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.uemt-pagination .page-numbers {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #eadfce;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.uemt-pagination .page-numbers.current,
.uemt-pagination .page-numbers:hover {
    background: linear-gradient(135deg, var(--red-dark), var(--red-bright));
    color: #fff;
    border-color: transparent;
}

.uemt-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--text-light);
}

.uemt-breadcrumb a {
    color: var(--red-dark);
    text-decoration: none;
    font-weight: 700;
}

.uemt-breadcrumb a:hover {
    color: var(--red-bright);
    text-decoration: underline;
}

.uemt-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: start;
}

.uemt-single-article {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.uemt-single-featured {
    margin: 0;
    background: #e8e5df;
}

.uemt-single-featured img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.uemt-single-header {
    padding: 30px 34px 12px;
}

.uemt-single-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(139, 0, 0, 0.08);
    color: var(--red-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 14px;
}

.uemt-single-title {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: clamp(20px, 4vw, 30px);
    line-height: 1.35;
    margin-bottom: 14px;
    font-weight: 900;
}

.uemt-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
}

.uemt-single-meta i {
    color: var(--red-bright);
    margin-left: 5px;
}

.uemt-single-content {
    padding: 16px 34px 38px;
    font-size: 18px;
    line-height: 2.05;
    color: var(--text-dark);
	text-align: justify;
}

.uemt-single-content p,
.uemt-single-content ul,
.uemt-single-content ol,
.uemt-single-content blockquote,
.uemt-single-content figure {
    margin-bottom: 20px;
}

.uemt-single-content h2,
.uemt-single-content h3,
.uemt-single-content h4 {
    font-family: var(--font-heading);
    color: var(--red-dark);
    line-height: 1.45;
    margin: 30px 0 14px;
}

.uemt-single-content a {
    color: var(--red-bright);
    font-weight: 700;
}

.uemt-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.uemt-single-content blockquote {
    border-right: 4px solid var(--red-dark);
    background: #faf7f1;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    color: var(--text-medium);
}

.uemt-sidebar {
    min-width: 0;
}

.uemt-sidebar-sticky {
    position: sticky;
    top: calc(var(--header-height-scrolled) + 24px);
}

.uemt-sidebar-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 20px;
}

.uemt-sidebar-title {
    font-family: var(--font-heading);
    color: var(--red-dark);
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.uemt-sidebar .news-card {
    border-radius: var(--radius-md);
}

.uemt-sidebar .news-card:hover {
    transform: translateY(-2px);
}

.uemt-sidebar .news-card .news-image {
    height: 135px;
}

.uemt-sidebar .news-card .news-body {
    padding: 14px;
}

.uemt-sidebar .news-card h4 {
    font-size: 14px;
}

.uemt-sidebar .news-card p {
    font-size: 12.5px;
}

.uemt-sidebar .uemt-news-more-wrap {
    margin-top: 18px;
}

.uemt-contact-message {
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
}

.uemt-contact-message.success {
    background: #e9f7ec;
    color: #1f6b2b;
    border: 1px solid #bfe5c7;
}

.uemt-contact-message.error {
    background: #fff1f1;
    color: #9b1c1c;
    border: 1px solid #f1c2c2;
}

.uemt-honeypot {
    position: absolute !important;
    right: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

@media (max-width: 992px) {
    .uemt-single-layout {
        grid-template-columns: 1fr;
    }

    .uemt-sidebar-sticky {
        position: static;
    }

    .uemt-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .uemt-blog-grid {
        grid-template-columns: 1fr;
    }

    .uemt-single-header,
    .uemt-single-content {
        padding-left: 22px;
        padding-right: 22px;
    }

    .uemt-single-content {
        font-size: 16px;
    }
}

