/* ============================================================
   THEME 0 — ITQAN BLUE THEME (Default)
   ============================================================ */


        /* ========================================
   RESET & BASE STYLES
======================================== */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #4fc3f7;
            --gold-light: #81d4fa;
            --dark: #0a2a4a;
            --darker: #051a30;
            --gray: #333;
            --light-gray: #999;
            --white: #fff;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Cairo', 'Tajawal', Arial, sans-serif;
            direction: rtl;
            background: var(--darker);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
        }

        /* ========================================
   TOP BAR - MOBILE OPTIMIZED
======================================== */

        .top-bar {
            background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
            padding: 10px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid rgba(79, 195, 247, 0.2);
            position: sticky;
            top: 0;
            z-index: 999;
            backdrop-filter: blur(10px);
        }

        .contact-info {
            display: flex;
            gap: 20px;
            align-items: center;
            font-size: 13px;
            color: var(--gold);
        }

        .contact-info a {
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.3s;
        }

        .contact-info a:hover {
            color: var(--gold-light);
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(79, 195, 247, 0.1);
            border-radius: 50%;
            color: var(--gold);
            font-size: 14px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--gold);
            color: var(--darker);
            transform: translateY(-2px);
        }

        /* ========================================
   HEADER - SIMPLIFIED FOR MOBILE
======================================== */

        .main-header {
            background: var(--darker);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid var(--gold);
            position: sticky;
            top: 54px;
            z-index: 998;
            backdrop-filter: blur(10px);
        }

        .logo-container {
            flex-shrink: 0;
        }

        .logo {
            height: 50px;
            width: auto;
            transition: transform 0.3s;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        /* Mobile Menu Button */

        .mobile-menu-btn {
            width: 44px;
            height: 44px;
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            background: var(--gold);
            border-radius: 8px;
            transition: all 0.3s;
        }

        .mobile-menu-btn span {
            width: 24px;
            height: 2px;
            background: var(--darker);
            transition: all 0.3s;
            border-radius: 2px;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Navigation */

        .main-nav ul {
            display: flex;
            gap: 5px;
            list-style: none;
        }

        .main-nav a {
            padding: 12px 20px;
            color: var(--gold);
            font-weight: 600;
            font-size: 15px;
            border-radius: 6px;
            transition: all 0.3s;
            display: block;
        }

        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(79, 195, 247, 0.15);
            color: var(--gold-light);
        }

        /* ========================================
   HERO SECTION - FULLSCREEN ON MOBILE
======================================== */

        .hero-section {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient( 135deg, rgba(5, 26, 48, 0.8) 0%, rgba(10, 42, 74, 0.6) 50%, rgba(5, 26, 48, 0.8) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 20px 5%;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-subtitle {
            font-size: clamp(14px, 3vw, 18px);
            color: var(--gold);
            font-weight: 500;
            letter-spacing: 3px;
            margin-bottom: 15px;
            text-transform: uppercase;
            animation: fadeInUp 1s ease 0.3s backwards;
        }

        .hero-title {
            font-size: clamp(32px, 6vw, 64px);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--white);
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease 0.5s backwards;
        }

        .hero-description {
            font-size: clamp(16px, 2.5vw, 20px);
            color: #ddd;
            margin-bottom: 30px;
            line-height: 1.8;
            animation: fadeInUp 1s ease 0.7s backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.9s backwards;
        }

        .btn {
            padding: 14px 32px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-width: 160px;
            justify-content: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--darker);
            box-shadow: 0 10px 30px rgba(79, 195, 247, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(79, 195, 247, 0.5);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
        }

        .btn-secondary:hover {
            background: var(--gold);
            color: var(--darker);
        }

        /* Slider Indicators */

        .slider-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .slider-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-indicator.active {
            background: var(--gold);
            width: 40px;
            border-radius: 6px;
        }

        /* ========================================
   SERVICES SECTION
======================================== */

        .services-section {
            padding: 80px 5% 60px;
            background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 50%, var(--darker) 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            font-size: 14px;
            color: var(--gold);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .section-title {
            font-size: clamp(28px, 5vw, 42px);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 15px;
        }

        .section-description {
            font-size: 18px;
            color: var(--light-gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background: linear-gradient(135deg, var(--dark) 0%, rgba(26, 42, 74, 0.8) 100%);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s;
            border: 1px solid rgba(79, 195, 247, 0.1);
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 20px 50px rgba(79, 195, 247, 0.2);
        }

        .service-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .service-card:hover .service-image img {
            transform: scale(1.15);
        }

        .service-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: rgba(79, 195, 247, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--darker);
            backdrop-filter: blur(10px);
        }

        .service-content {
            padding: 25px;
        }

        .service-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 12px;
        }

        .service-description {
            font-size: 15px;
            color: var(--light-gray);
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .service-link {
            color: var(--gold);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            transition: gap 0.3s;
        }

        .service-link:hover {
            gap: 10px;
        }

        /* ========================================
   CTA SECTION
======================================== */

        .cta-section {
            padding: 80px 5%;
            background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/theme0/images/banner.png') center/cover;
            opacity: 0.1;
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .cta-description {
            font-size: clamp(18px, 2.5vw, 22px);
            color: var(--light-gray);
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .cta-features {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 18px;
            color: var(--gold);
            font-weight: 600;
        }

        .cta-feature i {
            font-size: 24px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 18px 40px;
            font-size: 18px;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-width: 200px;
            justify-content: center;
        }

        .cta-btn-primary {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--darker);
            box-shadow: 0 15px 40px rgba(79, 195, 247, 0.4);
        }

        .cta-btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(79, 195, 247, 0.6);
        }

        .cta-btn-secondary {
            background: transparent;
            border: 3px solid var(--gold);
            color: var(--gold);
        }

        .cta-btn-secondary:hover {
            background: var(--gold);
            color: var(--darker);
        }

        /* ========================================
   ABOUT SECTION
======================================== */

        .about-section {
            padding: 80px 5%;
            background: var(--darker);
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-image {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-content h2 {
            font-size: clamp(32px, 4vw, 42px);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
        }

        .about-content h3 {
            font-size: 20px;
            color: var(--gold);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .about-content p {
            font-size: 17px;
            color: var(--light-gray);
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: var(--gold);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--darker);
            font-size: 18px;
            flex-shrink: 0;
        }

        .feature-text {
            flex: 1;
        }

        .feature-text h4 {
            font-size: 16px;
            color: var(--white);
            margin-bottom: 5px;
            font-weight: 600;
        }

        .feature-text p {
            font-size: 14px;
            color: var(--light-gray);
            margin: 0;
        }

        /* ========================================
   REQUEST SECTION
======================================== */

        .request-section {
            padding: 80px 5%;
            background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
        }

        .request-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .request-info {
            background: linear-gradient(135deg, rgba(26, 42, 74, 0.8) 0%, rgba(10, 26, 48, 0.9) 100%);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(79, 195, 247, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .request-info h2 {
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 15px;
        }

        .request-info h3 {
            font-size: 20px;
            color: var(--gold);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .request-info p {
            font-size: 16px;
            color: var(--light-gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .request-details {
            margin-top: 30px;
        }

        .request-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(79, 195, 247, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(79, 195, 247, 0.1);
            transition: all 0.3s;
        }

        .request-item:hover {
            background: rgba(79, 195, 247, 0.1);
            border-color: var(--gold);
        }

        .request-item-icon {
            width: 45px;
            height: 45px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--darker);
            font-size: 18px;
            flex-shrink: 0;
        }

        .request-item-text h4 {
            font-size: 14px;
            color: var(--gold);
            margin-bottom: 5px;
            font-weight: 600;
        }

        .request-item-text p {
            font-size: 16px;
            color: var(--white);
            margin: 0;
        }

        .request-form-container {
            background: linear-gradient(135deg, rgba(26, 42, 74, 0.8) 0%, rgba(10, 26, 48, 0.9) 100%);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(79, 195, 247, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--gold);
            font-weight: 600;
            font-size: 14px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(79, 195, 247, 0.2);
            border-radius: 10px;
            color: var(--white);
            font-size: 15px;
            font-family: inherit;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(0, 0, 0, 0.7);
            box-shadow: 0 0 20px rgba(79, 195, 247, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--darker);
            font-size: 17px;
            font-weight: 700;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(79, 195, 247, 0.3);
            margin-top: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(79, 195, 247, 0.5);
        }

        /* ========================================
   FOOTER
======================================== */

        .main-footer {
            background: var(--darker);
            padding: 60px 5% 20px;
            border-top: 2px solid var(--gold);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto 40px;
        }

        .footer-section h3 {
            font-size: 20px;
            color: var(--gold);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer-section p,
        .footer-section li {
            color: var(--light-gray);
            line-height: 1.8;
            font-size: 15px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 12px;
            padding-right: 15px;
            position: relative;
            transition: all 0.3s;
            cursor: pointer;
        }

        .footer-section li::before {
            content: '▸';
            position: absolute;
            right: 0;
            color: var(--gold);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .footer-section li:hover {
            color: var(--gold);
            padding-right: 25px;
        }

        .footer-section li:hover::before {
            opacity: 1;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(79, 195, 247, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: var(--gold);
            color: var(--darker);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--gray);
            color: var(--light-gray);
            font-size: 14px;
        }

        .footer-bottom strong {
            color: var(--gold);
            display: block;
            margin-bottom: 10px;
            font-size: 16px;
        }

        /* ========================================
   FLOATING ACTION BUTTONS
======================================== */

        .floating-buttons {
            position: fixed;
            bottom: 25px;
            left: 25px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 999;
        }

        .float-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
            animation: pulse 2s infinite;
            cursor: pointer;
        }

        .float-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        }

        .float-btn i {
            font-size: 28px;
            color: var(--white);
        }

        .call-float {
            background: linear-gradient(135deg, #0088cc 0%, #005f8c 100%);
            box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
        }

        .call-float:hover {
            box-shadow: 0 15px 40px rgba(0, 136, 204, 0.6);
        }

        .whatsapp-float {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-float:hover {
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
        }

        /* ========================================
   ANIMATIONS
======================================== */

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* ========================================
   MOBILE RESPONSIVE - PRIORITY
======================================== */

        /* Tablets and below */

        @media (max-width: 1024px) {
            .main-header {
                top: 0;
            }
            .top-bar {
                position: relative;
            }
            .about-container,
            .request-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .about-features {
                grid-template-columns: 1fr;
            }
            .cta-features {
                gap: 20px;
            }
        }

        /* Mobile devices */

        @media (max-width: 768px) {
            /* Hide top bar on very small screens for cleaner look */
            .top-bar {
                padding: 8px 4%;
                flex-direction: column;
                gap: 10px;
            }
            .contact-info {
                flex-direction: column;
                gap: 8px;
                font-size: 12px;
            }
            .social-links {
                order: -1;
            }
            /* Simplified header for mobile */
            .main-header {
                padding: 12px 4%;
            }
            .logo {
                height: 40px;
            }
            .mobile-menu-btn {
                display: flex;
            }
            .main-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
                padding: 80px 20px 20px;
                transition: right 0.4s ease;
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
                overflow-y: auto;
                z-index: 1000;
            }
            .main-nav.active {
                right: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav a {
                padding: 16px 20px;
                border-bottom: 1px solid rgba(79, 195, 247, 0.1);
                font-size: 16px;
            }
            /* Hero optimized for mobile */
            .hero-section {
                min-height: 500px;
                height: calc(100vh - 60px);
            }
            .hero-content {
                padding: 20px 4%;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            .btn {
                width: 100%;
                padding: 16px 24px;
            }
            .slider-indicators {
                bottom: 15px;
            }
            /* Services optimized for mobile */
            .services-section {
                padding: 50px 4% 40px;
            }
            .section-header {
                margin-bottom: 40px;
            }
            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .service-card {
                max-width: 100%;
            }
            /* CTA Section mobile */
            .cta-section {
                padding: 50px 4%;
            }
            .cta-features {
                flex-direction: column;
                gap: 15px;
            }
            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            /* About section - mobile friendly */
            .about-section {
                padding: 50px 4%;
            }
            .about-image {
                height: 300px;
            }
            /* Request form - mobile optimized */
            .request-section {
                padding: 50px 4%;
            }
            .request-info,
            .request-form-container {
                padding: 25px 20px;
            }
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .form-group input,
            .form-group textarea {
                padding: 12px 15px;
                font-size: 16px;
                /* Prevents zoom on iOS */
            }
            /* Footer mobile */
            .main-footer {
                padding: 40px 4% 20px;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            /* Floating buttons - mobile optimized */
            .floating-buttons {
                bottom: 15px;
                left: 15px;
            }
            .float-btn {
                width: 55px;
                height: 55px;
            }
            .float-btn i {
                font-size: 26px;
            }
        }

        /* Small mobile devices */

        @media (max-width: 480px) {
            html {
                font-size: 14px;
            }
            .main-nav {
                width: 100%;
                right: -100%;
            }
            .hero-section {
                min-height: 450px;
            }
            .service-image {
                height: 200px;
            }
            .about-image {
                height: 250px;
            }
            .request-info,
            .request-form-container {
                padding: 20px 15px;
            }
        }

        /* Landscape mobile */

        @media (max-height: 500px) and (orientation: landscape) {
            .hero-section {
                height: auto;
                min-height: 400px;
                padding: 60px 0;
            }
            .hero-title {
                font-size: 32px;
            }
        }

        /* High DPI screens */

        @media (-webkit-min-device-pixel-ratio: 2),
        (min-resolution: 192dpi) {
            .service-image img,
            .about-image img {
                image-rendering: -webkit-optimize-contrast;
            }
        }

        /* Touch device optimizations */

        @media (hover: none) and (pointer: coarse) {
            .btn,
            .service-card,
            .request-item {
                -webkit-tap-highlight-color: transparent;
            }
            /* Larger touch targets for mobile */
            .main-nav a,
            .social-links a,
            .footer-social a {
                min-height: 44px;
                min-width: 44px;
            }
        }
    

/* ========================================
   SUBPAGE & EXTRA COMPONENTS
======================================== */

PAGE HERO
======================================== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://itqan-blue.com/banner.png') center/cover;
  opacity: 0.2;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px 5%;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--gold);
  margin-bottom: 30px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: var(--light-gray);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--gold);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--gold-light);
}


ABOUT STORY SECTION
======================================== */
.about-story {
  padding: 80px 5%;
  background: var(--darker);
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.story-image:hover img {
  transform: scale(1.05);
}

.story-content h2 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.story-content h3 {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.story-content p {
  font-size: 17px;
  color: var(--light-gray);
  line-height: 1.9;
  margin-bottom: 20px;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(79, 195, 247, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(79, 195, 247, 0.2);
  transition: all 0.3s;
}

.stat-item:hover {
  background: rgba(79, 195, 247, 0.15);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: var(--light-gray);
}


MISSION VISION SECTION
======================================== */
.mission-vision {
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
}

.mv-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  background: linear-gradient(135deg, rgba(26, 42, 74, 0.8) 0%, rgba(10, 26, 48, 0.9) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(79, 195, 247, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  text-align: center;
  transition: all 0.3s;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(79, 195, 247, 0.2);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--darker);
}

.mv-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
}

.mv-description {
  font-size: 16px;
  color: var(--light-gray);
  line-height: 1.8;
}


VALUES SECTION
======================================== */
.values-section {
  padding: 80px 5%;
  background: var(--darker);
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
}

.section-description {
  font-size: 18px;
  color: var(--light-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: linear-gradient(135deg, var(--dark) 0%, rgba(26, 42, 74, 0.8) 100%);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(79, 195, 247, 0.1);
  text-align: center;
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(79, 195, 247, 0.2);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--darker);
}

.value-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.value-description {
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.7;
}


SERVICES INTRO
======================================== */
.services-intro {
  padding: 80px 5%;
  background: var(--darker);
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.intro-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.intro-description {
  font-size: 18px;
  color: var(--light-gray);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.intro-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  color: var(--gold);
  font-weight: 600;
}

.intro-feature i {
  font-size: 24px;
}


PROCESS SECTION
======================================== */
.process-section {
  padding: 80px 5%;
  background: var(--darker);
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
}

.section-description {
  font-size: 18px;
  color: var(--light-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.process-timeline {
  position: relative;
  padding: 40px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  width: 2px;
  height: 100%;
  background: var(--gold);
  transform: translateX(50%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 20px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--darker);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-description {
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.6;
}


FAQ SECTION
======================================== */
.faq-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 40px;
}

.faq-item {
  background: linear-gradient(135deg, rgba(26, 42, 74, 0.8) 0%, rgba(10, 26, 48, 0.9) 100%);
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(79, 195, 247, 0.2);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(79, 195, 247, 0.2);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  transition: all 0.3s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 20px 20px;
  font-size: 16px;
  color: var(--light-gray);
  line-height: 1.7;
}


CONTACT HERO
======================================== */
.contact-hero {
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
  text-align: center;
}

.contact-hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-hero-description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--light-gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}


CONTACT FORM SECTION
======================================== */
.contact-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-container .contact-info, .request-info {
  background: linear-gradient(135deg, rgba(26, 42, 74, 0.8) 0%, rgba(10, 26, 48, 0.9) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(79, 195, 247, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.request-info h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
}

.request-info h3 {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.request-info p {
  font-size: 16px;
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(79, 195, 247, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(79, 195, 247, 0.1);
  transition: all 0.3s;
}

.contact-item:hover {
  background: rgba(79, 197, 247, 0.1);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.contact-item-icon {
  width: 45px;
  height: 45px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--darker);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-item-text p {
  font-size: 16px;
  color: var(--white);
  margin: 0;
}

.contact-form-container {
  background: linear-gradient(135deg, rgba(26, 42, 74, 0.8) 0%, rgba(10, 26, 48, 0.9) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(79, 195, 247, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(79, 195, 247, 0.2);
  border-radius: 10px;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 20px rgba(79, 195, 247, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--darker);
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(79, 195, 247, 0.3);
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(79, 197, 247, 0.5);
}


CONTACT INFO CARDS
======================================== */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.info-card {
  background: linear-gradient(135deg, rgba(26, 42, 74, 0.8) 0%, rgba(10, 26, 48, 0.9) 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(79, 195, 247, 0.2);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(79, 195, 247, 0.2);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--darker);
}

.info-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.info-description {
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.info-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--darker);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.info-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 195, 247, 0.4);
}


MAP SECTION
======================================== */
.map-section {
  padding: 0;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.map-container {
  width: 100%;
  height: 100%;
}

.map-frame {
  width: 100%;
  height: 100%;
  border: 0;
}



/* ========================================
   CUSTOM FIXES: TOPBAR, MOBILE NAV, DROPDOWN & FOOTER
======================================== */

/* Strict Topbar styling & reset */
.top-bar {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%) !important;
    padding: 10px 5% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 15px !important;
    border-bottom: 1px solid rgba(79, 195, 247, 0.2) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
    backdrop-filter: blur(10px) !important;
}

.top-bar .contact-info {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px !important;
    align-items: center !important;
    font-size: 13px !important;
    color: var(--gold) !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.top-bar .contact-info a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    direction: ltr !important;
    color: var(--gold) !important;
    transition: color 0.3s !important;
    text-decoration: none !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    font-size: 13px !important;
}

.top-bar .contact-info a i {
    color: var(--gold) !important;
    font-size: 14px !important;
}

.top-bar .contact-info a span {
    direction: ltr !important;
    unicode-bidi: isolate !important;
    color: var(--white) !important;
    display: inline-block !important;
}

.top-bar .contact-info a:hover {
    color: var(--white) !important;
}

.top-bar .contact-info a:hover span {
    color: var(--gold-light) !important;
}

.top-bar .social-links {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.top-bar .social-links a {
    width: 32px !important;
    height: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(79, 195, 247, 0.1) !important;
    border-radius: 50% !important;
    color: var(--gold) !important;
    font-size: 13px !important;
    transition: all 0.3s !important;
    text-decoration: none !important;
    border: 1px solid rgba(79, 195, 247, 0.2) !important;
}

.top-bar .social-links a:hover {
    background: var(--gold) !important;
    color: var(--darker) !important;
    transform: translateY(-2px) !important;
}

/* ========================================
   LUXURY HEADER DROPDOWN MENU
======================================== */

.nav-item-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-item-dropdown .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    padding: 10px 14px;
    color: var(--white);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-item-dropdown .dropdown-arrow {
    font-size: 11px;
    color: var(--gold);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item-dropdown:hover .dropdown-arrow,
.nav-item-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu-wrapper {
    position: absolute;
    top: calc(100% + 10px);
    right: 50%;
    transform: translateX(50%) translateY(8px);
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

/* Invisible bridge so hover doesn't break when moving mouse down */
.dropdown-menu-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

.nav-item-dropdown:hover .dropdown-menu-wrapper,
.nav-item-dropdown.open .dropdown-menu-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(50%) translateY(0);
}

.dropdown-menu-card {
    background: linear-gradient(135deg, rgba(8, 28, 54, 0.96) 0%, rgba(4, 18, 36, 0.98) 100%);
    border: 1px solid rgba(79, 195, 247, 0.25);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7), 0 0 25px rgba(79, 195, 247, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.dropdown-services-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-services-list li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-service-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 9px 12px !important;
    border-radius: 10px !important;
    color: #e2e8f0 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    background: transparent !important;
    border: 1px solid transparent !important;
}

.dropdown-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(79, 195, 247, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.25s ease;
    border: 1px solid rgba(79, 195, 247, 0.15);
}

.dropdown-item-info {
    flex: 1;
}

.dropdown-item-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #f1f5f9;
    transition: color 0.25s ease;
}

.dropdown-item-chevron {
    font-size: 11px;
    color: rgba(79, 195, 247, 0.4);
    transition: all 0.25s ease;
    transform: translateX(0);
}

.dropdown-service-item:hover {
    background: rgba(79, 195, 247, 0.12) !important;
    border-color: rgba(79, 195, 247, 0.25) !important;
    transform: translateX(-4px);
}

.dropdown-service-item:hover .dropdown-item-icon {
    background: var(--gold);
    color: var(--darker);
    border-color: var(--gold);
}

.dropdown-service-item:hover .dropdown-item-title {
    color: var(--gold-light);
}

.dropdown-service-item:hover .dropdown-item-chevron {
    color: var(--gold);
    transform: translateX(-3px);
}

.dropdown-footer-box {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(79, 195, 247, 0.15);
}

.dropdown-all-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 14px !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.18) 0%, rgba(79, 195, 247, 0.08) 100%) !important;
    border: 1px solid rgba(79, 195, 247, 0.3) !important;
    color: var(--gold) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.dropdown-all-btn:hover {
    background: var(--gold) !important;
    color: var(--darker) !important;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3) !important;
    transform: translateY(-1px);
}

.dropdown-all-btn i {
    transition: transform 0.25s ease;
}

.dropdown-all-btn:hover i {
    transform: translateX(-4px);
}

/* Mobile Drawer Header & Close Button */
.nav-header-mobile {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px 20px;
    border-bottom: 1px solid rgba(79, 195, 247, 0.2);
    margin-bottom: 15px;
}

.nav-header-mobile .nav-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--gold);
}

.nav-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(79, 195, 247, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid rgba(79, 195, 247, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.nav-close-btn:hover,
.nav-close-btn:active {
    background: var(--gold);
    color: var(--darker);
    transform: rotate(90deg);
}

.nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.nav-backdrop.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .top-bar {
        padding: 6px 4% !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 8px !important;
        position: relative !important;
    }

    .top-bar .contact-info {
        flex-direction: row !important;
        gap: 10px !important;
        align-items: center !important;
        font-size: 12px !important;
    }

    .top-bar .contact-info a {
        font-size: 12px !important;
        gap: 5px !important;
    }

    .top-bar .contact-info a[href^="mailto:"] {
        display: none !important; /* Hide email on mobile to keep topbar ultra compact & 1-line */
    }

    .top-bar .social-links {
        display: flex !important;
        gap: 6px !important;
        order: 0 !important;
    }

    .top-bar .social-links a {
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
    }

    .main-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 998 !important;
        padding: 10px 4% !important;
    }

    .nav-header-mobile {
        display: flex;
    }

    .main-nav {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 290px !important;
        height: 100vh !important;
        background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%) !important;
        padding: 15px 15px 30px !important;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8) !important;
        overflow-y: auto !important;
        z-index: 1001 !important;
    }

    .main-nav.active {
        right: 0 !important;
    }

    .nav-item-dropdown {
        width: 100%;
    }

    .nav-item-dropdown .dropdown-toggle {
        display: flex !important;
        justify-content: space-between !important;
        width: 100% !important;
    }

    .nav-item-dropdown .dropdown-menu {
        position: static !important;
        width: 100% !important;
        background: rgba(5, 26, 48, 0.6) !important;
        border: 1px solid rgba(79, 195, 247, 0.15) !important;
        border-radius: 10px !important;
        margin: 6px 0 !important;
        padding: 4px 0 !important;
        box-shadow: none !important;
        display: none !important;
    }

    .nav-item-dropdown.open .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .nav-item-dropdown .dropdown-menu li a {
        padding: 10px 14px !important;
        font-size: 13.5px !important;
    }
}

@media (max-width: 400px) {
    .top-bar .social-links a {
        width: 25px !important;
        height: 25px !important;
        font-size: 11px !important;
    }
    .top-bar .contact-info a {
        font-size: 11px !important;
    }
}

/* Generic Phone Number LTR rule */
.request-item-text p a,
.main-footer p span,
.phone-number,
[href^="tel:"],
[href^="tel:"] span {
    direction: ltr !important;
    unicode-bidi: isolate !important;
    display: inline-block;
}

/* Hero Spacing & Button Optimizations */
.hero-section {
    position: relative;
    height: auto !important;
    min-height: 520px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 70px 5% 60px !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 5% !important;
    max-width: 860px !important;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: clamp(13px, 2.5vw, 16px) !important;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 12px !important;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(28px, 5vw, 54px) !important;
    font-weight: 800;
    line-height: 1.25 !important;
    margin-bottom: 16px !important;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-description {
    font-size: clamp(15px, 2vw, 18px) !important;
    color: #e2e8f0 !important;
    margin-bottom: 25px !important;
    line-height: 1.7 !important;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 14px 30px !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5) !important;
    color: #ffffff !important;
}

.btn-whatsapp i {
    font-size: 18px !important;
}

.btn-call {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
    color: var(--darker) !important;
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 14px 30px !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.btn-call:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(79, 195, 247, 0.55) !important;
    color: var(--darker) !important;
}

.btn-call i {
    font-size: 16px !important;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 420px !important;
        padding: 45px 5% 35px !important;
    }

    .hero-description {
        margin-bottom: 20px !important;
        font-size: 14.5px !important;
    }

    .hero-buttons {
        gap: 10px !important;
    }

    .hero-buttons .btn-whatsapp,
    .hero-buttons .btn-call {
        width: 100% !important;
        max-width: 280px !important;
        padding: 12px 20px !important;
        font-size: 15px !important;
        justify-content: center !important;
    }
}

/* Designer Credits */
.designer-credits {
    margin-top: 15px;
    font-size: 13px;
    color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.designer-credits a {
    color: var(--gold);
    font-weight: 700;
    transition: color 0.3s, transform 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.designer-credits a:hover {
    color: var(--gold-light);
    transform: translateY(-1px);
}

/* Process & Points Timeline Improvements */
.process-timeline {
    position: relative;
    padding: 30px 0 10px !important;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 55px !important;
    right: 12% !important;
    left: 12% !important;
    width: auto !important;
    height: 2px !important;
    background: linear-gradient(90deg, rgba(79, 195, 247, 0.05) 0%, rgba(79, 195, 247, 0.25) 50%, rgba(79, 195, 247, 0.05) 100%) !important;
    transform: none !important;
    z-index: 1 !important;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 28px 22px !important;
    background: linear-gradient(145deg, rgba(14, 30, 56, 0.9) 0%, rgba(6, 18, 36, 0.96) 100%) !important;
    border: 1px solid rgba(79, 195, 247, 0.15) !important;
    border-radius: 18px !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    z-index: 2 !important;
    transition: all 0.35s ease !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.process-step:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(79, 195, 247, 0.45) !important;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(79, 195, 247, 0.15) !important;
}

.step-number {
    width: 48px !important;
    height: 48px !important;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--darker) !important;
    margin: 0 auto 16px !important;
    box-shadow: 0 6px 18px rgba(79, 195, 247, 0.35) !important;
    position: relative;
    z-index: 3 !important;
}

.step-icon {
    font-size: 26px !important;
    color: var(--gold) !important;
    margin-bottom: 14px !important;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
}

.process-step p {
    font-size: 14.5px !important;
    color: #cbd5e1 !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .process-timeline::before {
        display: none !important;
    }

    .process-step {
        padding: 22px 18px !important;
    }
}

/* Clickable Contact & Request Info Cards */
.request-item,
a.request-item.request-link-card {
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    position: relative;
    border: 1px solid rgba(79, 195, 247, 0.12) !important;
    direction: rtl !important;
    text-align: right !important;
}

.request-item-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    flex-shrink: 0 !important;
    order: 1 !important;
    margin: 0 !important;
}

.request-item-text {
    order: 2 !important;
    text-align: right !important;
    flex: 1 !important;
}

.request-item-text h4 {
    text-align: right !important;
    margin: 0 0 4px !important;
}

.request-item-text p {
    text-align: right !important;
    margin: 0 !important;
}

.request-item-text p span.phone-number {
    direction: ltr !important;
    unicode-bidi: isolate !important;
    display: inline-block !important;
    font-family: inherit;
    font-weight: 700;
}

a.request-item.request-link-card:hover {
    transform: translateX(-6px) translateY(-2px) !important;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.12) 0%, rgba(26, 42, 74, 0.95) 100%) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 10px 25px rgba(79, 195, 247, 0.25) !important;
}

a.request-item.request-link-card:hover .request-item-icon {
    transform: scale(1.1) !important;
    box-shadow: 0 0 16px rgba(79, 195, 247, 0.4) !important;
}

.whatsapp-icon-bg {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
}

a.request-item-whatsapp:hover {
    border-color: #25D366 !important;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(18, 140, 126, 0.35) 100%) !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25) !important;
}

a.request-item-whatsapp:hover .request-item-icon {
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.6) !important;
}

/* Footer Contact Links */
.footer-contact-link {
    color: var(--light-gray) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.25s ease !important;
}

.footer-contact-link:hover {
    color: var(--gold) !important;
    transform: translateX(-4px) !important;
}

.footer-whatsapp-link:hover {
    color: #25D366 !important;
}

/* Floating Action Buttons Centering & Perfection */
.floating-buttons {
    position: fixed !important;
    bottom: 24px !important;
    left: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    z-index: 9999 !important;
}

.float-btn {
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    text-decoration: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: visible !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
}

.float-btn i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 26px !important;
    line-height: 1 !important;
    color: #ffffff !important;
    transform: none !important;
}

.call-float {
    background: linear-gradient(135deg, #0288d1 0%, #01579b 100%) !important;
    box-shadow: 0 10px 25px rgba(2, 136, 209, 0.45) !important;
}

.call-float:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 14px 30px rgba(2, 136, 209, 0.6) !important;
}

.whatsapp-float {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45) !important;
}

.whatsapp-float:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6) !important;
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 16px !important;
        left: 16px !important;
        gap: 10px !important;
    }

    .float-btn {
        width: 52px !important;
        height: 52px !important;
    }

    .float-btn i {
        font-size: 23px !important;
    }
}

/* Service Hero Dark Luxury Theme 0 Styling */
.theme-0 .ebhro-serv20-hero {
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%) !important;
    padding: 60px 0 40px !important;
}

.theme-0 .ebhro-serv20-title {
    color: var(--white) !important;
}

.theme-0 .ebhro-serv20-title-highlight {
    color: var(--gold) !important;
    background: linear-gradient(135deg, var(--gold) 0%, #38bdf8 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.theme-0 .ebhro-serv20-desc {
    color: var(--light-gray) !important;
}

.theme-0 .ebhro-serv20-hl-item {
    color: var(--white) !important;
}

.theme-0 .ebhro-serv20-hl-icon {
    color: var(--gold) !important;
}

.theme-0 .ebhro-serv20-badge {
    background: rgba(79, 195, 247, 0.1) !important;
    border: 1px solid rgba(79, 195, 247, 0.25) !important;
    color: var(--gold) !important;
}

.theme-0 .ebhro-serv20-media-card {
    background: linear-gradient(145deg, rgba(14, 30, 56, 0.85), rgba(6, 18, 36, 0.95)) !important;
    border: 1px solid rgba(79, 195, 247, 0.2) !important;
}

.theme-0 .ebhro-serv20-float-card {
    background: linear-gradient(145deg, rgba(10, 25, 48, 0.95), rgba(4, 14, 30, 0.98)) !important;
    border: 1px solid rgba(79, 195, 247, 0.3) !important;
    color: var(--white) !important;
}

.theme-0 .ebhro-serv20-fc-title {
    color: var(--gold) !important;
}

.theme-0 .ebhro-serv20-fc-subtitle {
    color: var(--light-gray) !important;
}

.theme-0 .ebhro-serv20-feat-card {
    background: linear-gradient(145deg, rgba(14, 30, 56, 0.9), rgba(6, 18, 36, 0.96)) !important;
    border: 1px solid rgba(79, 195, 247, 0.15) !important;
    color: var(--white) !important;
}

.theme-0 .ebhro-serv20-feat-title {
    color: var(--gold) !important;
}

.theme-0 .ebhro-serv20-feat-desc {
    color: var(--light-gray) !important;
}

.theme-0 .ebhro-serv20-sec-title {
    color: var(--white) !important;
}

.theme-0 .ebhro-serv20-sec-sub {
    color: var(--gold) !important;
}

/* Service Card Clickable Elements */
.service-image {
    display: block !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.service-title-link {
    color: inherit !important;
    text-decoration: none !important;
    transition: color 0.25s ease !important;
    display: inline-block !important;
}

.service-title-link:hover {
    color: var(--gold) !important;
}

.service-card:hover .service-image img {
    transform: scale(1.06) !important;
}

.ebhro-serv20-float-pill {
    background: rgba(10, 25, 48, 0.95) !important;
    border: 1px solid rgba(245, 158, 11, 0.4) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
}

.ebhro-serv20-float-pill span,
.ebhro-serv20-float-pill {
    color: #ffffff !important;
}

.ebhro-serv20-float-pill i {
    color: #f59e0b !important;
}

/* ============================================================
   THEME 0 — BLOG ARCHIVE & ARTICLE DETAILS STYLING
   ============================================================ */

.blog-archive-section {
    padding: 60px 5% 90px;
    background: var(--darker);
    min-height: 50vh;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Category Tabs */
.blog-categories-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 45px;
}

.blog-cat-tab {
    background: rgba(14, 30, 56, 0.8);
    border: 1px solid rgba(79, 195, 247, 0.2);
    color: #94a3b8;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.blog-cat-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    background: rgba(79, 195, 247, 0.08);
}

.blog-cat-tab.active {
    background: linear-gradient(135deg, #4fc3f7 0%, #0288d1 100%);
    color: #050c1a;
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.35);
}

.blog-cat-tab .cat-count {
    background: rgba(0, 0, 0, 0.25);
    color: inherit;
    padding: 2px 7px;
    border-radius: 12px;
    font-size: 11px;
}

/* Articles Grid */
.blog-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.blog-card {
    background: linear-gradient(135deg, rgba(14, 30, 56, 0.9) 0%, rgba(6, 18, 36, 0.96) 100%);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(79, 195, 247, 0.2);
}

.blog-card-media {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    display: block;
}

.blog-card-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.08);
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(5, 12, 26, 0.8) 100%);
}

.blog-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(5, 12, 26, 0.85);
    border: 1px solid rgba(79, 195, 247, 0.4);
    color: var(--primary);
    backdrop-filter: blur(8px);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 12.5px;
    color: #64748b;
    margin-bottom: 12px;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    color: var(--primary);
}

.blog-card-title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.blog-card-title a:hover {
    color: var(--gold);
}

.blog-card-excerpt {
    color: #94a3b8;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-footer {
    border-top: 1px solid rgba(79, 195, 247, 0.12);
    padding-top: 16px;
    margin-top: auto;
}

.blog-read-more {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.25s ease, color 0.25s ease;
}

.blog-read-more:hover {
    color: var(--gold);
    gap: 12px;
}

/* ============================================================
   SINGLE ARTICLE PAGE STYLING
   ============================================================ */

.article-hero-section {
    padding: 60px 5% 40px;
    background: linear-gradient(180deg, #050c1a 0%, #0a1628 100%);
    border-bottom: 1px solid rgba(79, 195, 247, 0.15);
}

.article-hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.article-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    color: #94a3b8;
    font-size: 13.5px;
    margin-bottom: 16px;
}

.article-header-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-cat-badge {
    background: rgba(79, 195, 247, 0.15);
    color: var(--primary);
    border: 1px solid rgba(79, 195, 247, 0.35);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
}

.article-main-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 30px;
}

.article-featured-media {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(79, 195, 247, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    margin-top: 10px;
}

.article-featured-media img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

/* Article Layout Grid */
.article-layout-section {
    padding: 60px 5% 80px;
    background: var(--darker);
}

.article-layout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.article-main-content {
    background: linear-gradient(135deg, rgba(14, 30, 56, 0.9) 0%, rgba(6, 18, 36, 0.96) 100%);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-body-text {
    color: #cbd5e1;
    font-size: 17px;
    line-height: 2;
}

.article-body-text p {
    margin-bottom: 20px;
}

.article-body-text h2, .article-body-text h3 {
    color: #ffffff;
    font-weight: 700;
    margin: 35px 0 15px;
    position: relative;
    padding-right: 14px;
}

.article-body-text h2::before, .article-body-text h3::before {
    content: '';
    position: absolute;
    right: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--gold) 100%);
    border-radius: 4px;
}

.article-body-text ul, .article-body-text ol {
    margin: 15px 0 25px 25px;
    padding-right: 15px;
}

.article-body-text li {
    margin-bottom: 10px;
}

.article-body-text img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.article-share-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(79, 195, 247, 0.15);
    border-bottom: 1px solid rgba(79, 195, 247, 0.15);
    padding: 18px 0;
    margin: 35px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.share-label {
    color: #94a3b8;
    font-weight: 700;
    font-size: 14px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.share-btn.whatsapp { background: #25d366; color: #ffffff; border-color: #25d366; }
.share-btn.facebook { background: #1877f2; color: #ffffff; border-color: #1877f2; }
.share-btn.twitter { background: #000000; color: #ffffff; border-color: #333333; }
.share-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); }

.article-author-card {
    background: rgba(5, 12, 26, 0.6);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0a1628;
    border: 1px solid rgba(79, 195, 247, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.author-details h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 4px;
}

.author-details p {
    color: #94a3b8;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: linear-gradient(135deg, rgba(14, 30, 56, 0.9) 0%, rgba(6, 18, 36, 0.96) 100%);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.widget-title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(79, 195, 247, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-title i {
    color: var(--primary);
}

.sidebar-cta-widget {
    text-align: center;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.12) 0%, rgba(14, 30, 56, 0.95) 100%);
    border-color: rgba(79, 195, 247, 0.4);
}

.widget-cta-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
}

.sidebar-cta-widget h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 8px;
}

.sidebar-cta-widget p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.sidebar-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sidebar-cta-btn:hover {
    background: #1eb954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.related-article-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    align-items: center;
}

.related-article-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-article-item img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-article-info h5 {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color 0.25s ease;
}

.related-article-item:hover .related-article-info h5 {
    color: var(--gold);
}

.related-article-info span {
    color: #64748b;
    font-size: 12px;
}

.sidebar-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories-list li {
    margin-bottom: 8px;
}

.sidebar-categories-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.sidebar-categories-list a:hover {
    background: rgba(79, 195, 247, 0.1);
    color: var(--primary);
    padding-right: 16px;
}

@media (max-width: 992px) {
    .article-layout-container {
        grid-template-columns: 1fr;
    }
    .article-main-title {
        font-size: 24px;
    }
    .blog-articles-grid {
        grid-template-columns: 1fr;
    }
    .article-main-content {
        padding: 24px;
    }
}

