
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2ecc71;
            --primary-dark: #27ae60;
            --secondary-color: #1a1a2e;
            --text-dark: #333333;
            --text-light: #666666;
            --text-muted: #999999;
            --white: #ffffff;
            --light-bg: #f8f9fa;
            --border-color: #e5e5e5;
            --shadow: 0 10px 40px rgba(0,0,0,0.1);
            --shadow-light: 0 5px 20px rgba(0,0,0,0.08);
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 4px;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color) 0%, #27ae60 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
        }

        .btn-secondary {
            background: var(--secondary-color);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s ease;
        }

        .btn-secondary:hover::before {
            left: 100%;
        }

        .btn-secondary:hover {
            background: #252545;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(26, 26, 46, 0.35);
        }

        /* Top Bar */
        .top-bar {
            background: var(--secondary-color);
            padding: 2px 0;
            font-size: 10px;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0;
            padding-top: 0;
            padding-bottom: 0;
        }

        .top-bar-left {
            display: flex;
            flex: 1;
            gap: 25px;
            color: rgba(255,255,255,0.8);
        }

        .top-bar-left a {
            color: rgba(255,255,255,0.8);
            white-space: nowrap;
        }

        .top-bar-left a:hover {
            color: var(--primary-color);
        }

        .top-bar-left span {
            color: rgba(255,255,255,0.8);
        }

        .top-bar-left i {
            margin-right: 8px;
            color: var(--primary-color);
        }

        .top-bar-left > a,
        .top-bar-left > span {
            display: inline-flex;
            align-items: baseline;
        }

        .top-bar-left > span i {
            flex-shrink: 0;
        }

        .top-bar-right {
            display: flex;
            gap: 8px;
            flex-shrink: 0;
        }

        .top-bar-right a {
            color: rgba(255,255,255,0.8);
            width: 26px;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .top-bar-right a:hover {
            color: var(--primary-color);
            background: rgba(255,255,255,0.1);
        }

        .top-bar-flags {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-right: 8px;
            padding-right: 12px;
            border-right: 1px solid rgba(255,255,255,0.2);
        }

        .top-bar-flags span {
            font-size: 16px;
            line-height: 1;
        }

        .top-bar-flags .fi {
            width: 20px;
            height: 15px;
            border-radius: 2px;
        }

        .top-bar-flags .fi-np {
            margin-left: 4px;
        }

        /* Header */
        .header {
            background: var(--white);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-light);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 55px;
            width: auto;
        }

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

        .nav-menu {
            display: flex;
            gap: 35px;
        }

        .nav-menu a {
            color: var(--text-dark);
            font-weight: 500;
            font-size: 15px;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--primary-color);
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .header-cta .btn {
            font-weight: 700;
            font-size: 17px;
            padding: 8px 16px;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--secondary-color);
        }

        /* UAE Properties Dropdown */
        .has-dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
            padding: 10px 15px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            min-width: auto;
            z-index: 1001;
        }

        .has-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }

        @media (max-width: 992px) {
            .dropdown-menu:not(.dropdown-simple) {
                display: none;
            }
        }

        /* Simple Dropdown without images */
        .dropdown-menu.dropdown-simple {
            min-width: auto !important;
            padding: 10px 15px !important;
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            gap: 5px !important;
            align-items: center !important;
        }

        .dropdown-menu.dropdown-simple a {
            display: inline-block !important;
            padding: 8px 14px !important;
            color: #333 !important;
            font-size: 14px !important;
            font-weight: 600 !important;
            text-decoration: none !important;
            text-transform: uppercase !important;
            letter-spacing: 0.5px !important;
            transition: all 0.2s ease;
            white-space: nowrap !important;
            border-radius: 5px;
            border: none !important;
            position: static !important;
        }

        .dropdown-menu.dropdown-simple a + a::before {
            content: '';
            display: inline-block;
            width: 1.5px;
            height: 16px;
            background: var(--primary-color);
            margin-right: 12px;
            vertical-align: middle;
        }

        .dropdown-menu.dropdown-simple a:hover {
            background: #f8f9fa;
            color: var(--primary-color) !important;
        }

        .dropdown-menu.dropdown-simple a::after {
            display: none !important;
        }

        /* Page Hero */
        .page-hero {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #252545 100%);
            padding: 20px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
        }

        .page-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), #27ae60, var(--primary-color));
        }

        .page-hero-content {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
        }

        .page-hero-content h1 {
            color: #fff;
            font-size: 36px;
            margin-bottom: 12px;
        }

        .page-hero-content h1 em,
        .page-hero-content h1 span {
            color: var(--primary-color);
            font-style: normal;
        }

        .page-hero-content p {
            color: rgba(255,255,255,0.85);
            font-size: 13px;
            line-height: 1.6;
            max-width: 100%;
            margin: 0 auto;
        }

        /* Why Join Section */
        .why-join {
            padding: 50px 0;
            background: var(--light-bg);
        }

        .why-join .section-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .why-join .section-header span {
            display: inline-block;
            padding: 10px 25px;
            background: rgba(46, 204, 113, 0.1);
            border: 1px solid rgba(46, 204, 113, 0.2);
            border-radius: 30px;
            color: var(--primary-color);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
        }

        .why-join .section-header h2 {
            font-size: 40px;
            color: var(--secondary-color);
            margin-top: 10px;
        }

        .why-join .section-header h2 span {
            color: var(--primary-color);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .benefit-card {
            background: var(--white);
            padding: 30px 25px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
            border-color: rgba(46, 204, 113, 0.2);
        }

        .benefit-card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(46, 204, 113, 0.05) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }

        .benefit-card:hover .benefit-card-icon {
            background: linear-gradient(135deg, var(--primary-color) 0%, #27ae60 100%);
        }

        .benefit-card-icon i {
            font-size: 32px;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .benefit-card:hover .benefit-card-icon i {
            color: var(--white);
        }

        .benefit-card h4 {
            font-size: 20px;
            color: var(--secondary-color);
            margin-bottom: 12px;
        }

        .benefit-card p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.7;
        }

        /* Open Positions Section */
        .open-positions {
            padding: 20px 0 50px;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .open-positions .section-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .open-positions .section-header span {
            color: var(--primary-color);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
            display: inline-block;
            padding: 10px 25px;
            border: 1px solid rgba(46, 204, 113, 0.2);
            border-radius: 30px;
            background: rgba(46, 204, 113, 0.1);
        }

        .open-positions .section-header h2 {
            color: var(--secondary-color);
            font-size: 40px;
            margin-top: 15px;
        }

        .open-positions .section-header h2 span {
            color: var(--primary-color);
        }

        .open-positions .section-header p {
            color: var(--text-light);
            font-size: 16px;
            max-width: 600px;
            margin: 15px auto 0;
        }

        .positions-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .position-card {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 20px;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            gap: 20px;
            transition: all 0.3s ease;
        }

        .position-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px);
            box-shadow: var(--shadow-light);
        }

        .position-info h4 {
            color: var(--secondary-color);
            font-size: 20px;
            margin-bottom: 8px;
        }

        .position-info .position-meta {
            display: flex;
            gap: 20px;
        }

        .position-info .position-meta span {
            color: var(--text-light);
            font-size: 14px;
        }

        .position-info .position-meta i {
            color: var(--primary-color);
            margin-right: 6px;
        }

        .position-info .position-desc {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.7;
            margin-top: 12px;
        }

        .position-card .btn {
            padding: 12px 30px;
            font-size: 13px;
            align-self: flex-start;
        }

        .no-positions {
            text-align: center;
            padding: 40px 25px;
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            border: 1px solid rgba(46, 204, 113, 0.15);
        }

        .no-positions i {
            font-size: 50px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .no-positions h4 {
            color: #fff;
            font-size: 24px;
            margin-bottom: 15px;
        }

        .no-positions p {
            color: rgba(255,255,255,0.7);
            font-size: 16px;
            max-width: 500px;
            margin: 0 auto;
        }

        /* Application Section */
        .section-divider {
            background: var(--light-bg);
            padding: 0;
            height: 4px;
            position: relative;
        }

        .section-divider::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .application-section {
            padding: 50px 0;
            background: var(--light-bg);
        }

        .application-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            align-items: start;
        }

        .application-content h2 {
            font-size: 36px;
            color: var(--secondary-color);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .application-content h2 span {
            color: var(--primary-color);
        }

        .application-content p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .application-steps {
            margin-top: 30px;
        }

        .step-item {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #27ae60 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 18px;
            flex-shrink: 0;
        }

        .step-content h4 {
            color: var(--secondary-color);
            font-size: 18px;
            margin-bottom: 5px;
        }

        .step-content p {
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 0;
        }

        .application-form-wrapper {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 20px;
            box-shadow: var(--shadow-light);
        }

        .application-form-wrapper h3 {
            font-size: 24px;
            color: var(--secondary-color);
            margin-bottom: 25px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            color: var(--text-dark);
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .file-upload {
            border: 2px dashed var(--border-color);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .file-upload:hover {
            border-color: var(--primary-color);
            background: rgba(46, 204, 113, 0.05);
        }

        .file-upload i {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .file-upload p {
            color: var(--text-light);
            font-size: 14px;
            margin: 0;
        }

        .file-upload span {
            color: var(--primary-color);
            font-weight: 600;
        }

        .file-upload input {
            display: none;
        }

        .application-form-wrapper .btn {
            width: 100%;
            padding: 16px;
            font-size: 15px;
        }

        /* Career Success Message */
        .career-success-message {
            display: none;
            text-align: center;
            padding: 60px 40px;
        }

        .career-success-message.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .career-success-message .success-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color) 0%, #22a366 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            animation: successPop 0.5s ease 0.2s both;
        }

        .career-success-message .success-icon i {
            color: #fff;
            font-size: 30px;
        }

        .career-success-message h3 {
            font-size: 22px;
            color: var(--secondary-color);
            margin-bottom: 8px;
        }

        .career-success-message p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.6;
            max-width: 400px;
            margin: 0 auto;
        }

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

        @keyframes successPop {
            0% { transform: scale(0); }
            70% { transform: scale(1.15); }
            100% { transform: scale(1); }
        }

        /* CTA Section */
        .careers-cta {
            padding: 50px 0;
            background: linear-gradient(135deg, #fdfcfa 0%, #f9f7f4 100%);
            position: relative;
            overflow: hidden;
        }

        .careers-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.3), transparent);
        }

        .careers-cta-content {
            text-align: center;
            max-width: 750px;
            margin: 0 auto;
        }

        .careers-cta-content .cta-badge {
            display: inline-block;
            padding: 10px 25px;
            background: rgba(46, 204, 113, 0.1);
            border: 1px solid rgba(46, 204, 113, 0.2);
            border-radius: 30px;
            color: var(--primary-color);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .careers-cta-content h2 {
            font-size: 42px;
            color: var(--secondary-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .careers-cta-content h2 span {
            color: var(--primary-color);
        }

        .careers-cta-content p {
            color: var(--text-light);
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 35px;
        }

        .careers-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        /* Footer */
        .footer {
            background: #ffffff;
            color: #333;
            padding: 0;
            position: relative;
            border-top: 1px solid #eee;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), #27ae60, var(--primary-color));
        }

        .footer-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            gap: 20px;
        }

        .footer-brand .logo img {
            height: 50px;
        }

        .footer-contact-info {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 12px;
            white-space: nowrap;
        }

        .footer-contact-item i {
            color: var(--primary-color);
            font-size: 14px;
        }

        .footer-contact-item a {
            color: #666;
            transition: color 0.3s ease;
        }

        .footer-contact-item a:hover {
            color: var(--primary-color);
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 32px;
            height: 32px;
            background: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding: 10px 0;
            text-align: center;
        }

        .footer-bottom p {
            color: #999;
            font-size: 12px;
            margin: 0;
        }

        /* Floating WhatsApp */
        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), #27ae60);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 30px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s ease;
        }

        .floating-whatsapp:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 45px;
            height: 45px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 998;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .header-cta .btn {
                padding: 10px 15px;
                font-size: 12px;
            }

            .page-hero {
                padding: 30px 0;
            }

            .page-hero-content h1 {
                font-size: 26px;
            }

            .page-hero-content p {
                font-size: 13px;
            }

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

            .position-card {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .position-info .position-meta {
                justify-content: center;
            }

            .footer-main {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .footer-contact-info {
                flex-direction: column;
                gap: 15px;
            }

            .careers-cta-content h2 {
                font-size: 32px;
            }

            .careers-cta-buttons {
                flex-direction: column;
            }
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 300px;
            height: 100vh;
            background: var(--white);
            z-index: 2000;
            padding: 25px;
            transition: left 0.3s ease;
            box-shadow: var(--shadow);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #333;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-menu-logo {
            margin-bottom: 25px;
            padding-top: 10px;
        }

        .mobile-menu-logo img {
            height: 45px;
        }

        .mobile-menu-nav {
            flex: 1;
        }

        .mobile-menu-nav > a,
        .mobile-dropdown > a.mobile-dropdown-toggle {
            display: block;
            padding: 14px 0;
            border-bottom: 1px solid var(--border-color);
            font-weight: 500;
            font-size: 15px;
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .mobile-menu-nav > a:hover,
        .mobile-dropdown > a.mobile-dropdown-toggle:hover {
            color: var(--primary-color);
        }

        .mobile-dropdown {
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-dropdown > a.mobile-dropdown-toggle {
            border-bottom: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-dropdown > a.mobile-dropdown-toggle i {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .mobile-dropdown.active > a.mobile-dropdown-toggle i {
            transform: rotate(180deg);
        }

        .mobile-dropdown-menu {
            display: none;
            padding-left: 15px;
            padding-bottom: 10px;
        }

        .mobile-dropdown.active .mobile-dropdown-menu {
            display: block;
        }

        .mobile-dropdown-menu a {
            display: block;
            padding: 10px 0;
            font-size: 14px;
            color: #666;
            text-decoration: none;
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-dropdown-menu a:last-child {
            border-bottom: none;
        }

        .mobile-dropdown-menu a:hover {
            color: var(--primary-color);
        }

        .mobile-menu-cta {
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
        }

        .mobile-menu-cta .btn {
            display: block;
            text-align: center;
            width: 100%;
            padding: 14px 20px;
        }

        .mobile-menu-contact {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-menu-contact a {
            color: #666;
            font-size: 13px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-menu-contact a i {
            color: var(--primary-color);
            width: 16px;
        }

        .mobile-menu-contact a:hover {
            color: var(--primary-color);
        }

        .mobile-menu-social {
            margin-top: 20px;
            display: flex;
            gap: 10px;
        }

        .mobile-menu-social a {
            width: 40px;
            height: 40px;
            background: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .mobile-menu-social a:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            /* Header & Navigation */
            .top-bar {
                display: none;
            }

            .nav-menu {
                display: none;
            }

            .header-cta {
                gap: 10px;
            }

            .header-cta .btn {
                padding: 10px 15px;
                font-size: 12px;
            }

            .mobile-menu-btn {
                display: block;
            }

            /* Logo */
            .logo img {
                height: 45px;
            }

            /* Container */
            .container {
                padding: 0 15px;
            }

            /* Footer Mobile */
            .footer-main {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                padding: 25px 0;
            }

            .footer-brand .logo img {
                height: 40px;
            }

            .footer-contact-info {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

            .footer-contact-item {
                justify-content: center;
                text-align: center;
                flex-wrap: wrap;
                white-space: normal;
            }

            .footer-contact-item span {
                max-width: 280px;
                line-height: 1.5;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-social a {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
                padding: 15px 0;
            }

            /* Mobile menu button */
            .mobile-menu {
                width: 280px;
            }

            .mobile-menu-nav a {
                padding: 14px 0;
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            /* Header */
            .logo img {
                height: 40px;
            }

            .header-cta .btn {
                padding: 8px 12px;
                font-size: 11px;
            }

            /* Page Hero */
            .page-hero-content h1 {
                font-size: 22px;
            }

            .page-hero-content p {
                font-size: 12px;
            }

            /* Footer */
            .footer-main {
                padding: 20px 0;
                gap: 18px;
            }

            .footer-brand .logo img {
                height: 35px;
            }

            .footer-contact-info {
                gap: 12px;
            }

            .footer-contact-item {
                font-size: 12px;
            }

            .footer-contact-item span {
                max-width: 250px;
                font-size: 12px;
            }

            .footer-social a {
                width: 38px;
                height: 38px;
                font-size: 15px;
            }

            .footer-bottom p {
                font-size: 11px;
            }
        }

        @media (max-width: 360px) {
            .container {
                padding: 0 10px;
            }

            .logo img {
                height: 35px;
            }

            .page-hero-content h1 {
                font-size: 18px;
            }

            .page-hero-content p {
                font-size: 11px;
            }
        }


        /* ========== CONTENT MOBILE OPTIMIZATION ========== */

        /* 768px - Tablet Breakpoint */
        @media (max-width: 768px) {
            /* About Page */
            .about-intro-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .about-intro-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }

            .about-intro-stats .stat-item h3 {
                font-size: 28px;
            }

            .mission-vision-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .mission-vision-card {
                padding: 25px;
            }

            .mission-vision-card h3 {
                font-size: 20px;
            }

            .style-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .style-item {
                padding: 20px;
            }

            /* Contact Page */
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .contact-form-wrapper {
                padding: 30px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .contact-card {
                padding: 20px;
            }

            .contact-card-icon {
                width: 50px;
                height: 50px;
            }

            .map-section {
                height: 350px;
            }

            .map-section iframe {
                height: 350px;
            }

            .contact-social-links a {
                width: 40px;
                height: 40px;
            }

            /* Properties Listing */
            .emirates-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }

            .properties-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .property-card .card-content {
                padding: 15px;
            }

            .category-header h3 {
                font-size: 20px;
            }

            /* Property Detail */
            .property-hero-grid {
                flex-direction: column;
            }

            .gallery-section {
                width: 100%;
            }

            .property-info-card {
                position: static;
                width: 100%;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .gallery-thumbs {
                grid-template-columns: repeat(4, 1fr);
                gap: 8px;
            }

            .thumb {
                height: 70px;
            }

            .highlights-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .highlight-item {
                padding: 12px;
            }

            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .amenity-item {
                padding: 15px;
            }

            .similar-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .floor-plans-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .payment-plan-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .benefit-card {
                padding: 25px 20px;
            }

            .benefit-card-icon {
                width: 60px;
                height: 60px;
            }

            .benefit-card-icon i {
                font-size: 24px;
            }

            .position-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
                padding: 25px;
            }

            .position-card .btn {
                width: 100%;
                text-align: center;
            }

            .application-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .application-form-wrapper {
                padding: 25px;
            }

            .careers-cta-content h2 {
                font-size: 28px;
            }

            /* FAQs Page */
            .faq-grid {
                grid-template-columns: 1fr;
            }

            .faq-item {
                padding: 20px;
            }

            /* Blogs Page */
            .blogs-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .blog-card .card-content {
                padding: 20px;
            }

            /* List Property Page */
            .list-property-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .list-property-form {
                padding: 30px;
            }

            /* Emirate Pages */
            .emirate-hero-content h1 {
                font-size: 32px;
            }

            .emirate-stats {
                flex-wrap: wrap;
                gap: 20px;
            }

            .emirate-stat {
                flex: 0 0 45%;
            }
        }

        /* 480px - Mobile Breakpoint */
        @media (max-width: 480px) {
            /* About Page */
            .about-intro-stats {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .about-intro-stats .stat-item h3 {
                font-size: 32px;
            }

            .about-intro-content h2 {
                font-size: 24px;
            }

            .mission-vision-card {
                padding: 20px;
            }

            .mission-vision-card h3 {
                font-size: 18px;
            }

            .style-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .style-item {
                padding: 15px;
            }

            .style-item h4 {
                font-size: 16px;
            }

            /* Contact Page */
            .contact-form-wrapper {
                padding: 20px;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 12px 15px;
                font-size: 14px;
            }

            .form-submit button,
            .contact-form button[type="submit"] {
                padding: 14px 20px;
                font-size: 14px;
            }

            .contact-card {
                padding: 15px;
            }

            .contact-card h4 {
                font-size: 14px;
            }

            .contact-card p {
                font-size: 13px;
            }

            .map-section {
                height: 280px;
            }

            .map-section iframe {
                height: 280px;
            }

            .contact-social-links a {
                width: 38px;
                height: 38px;
                font-size: 14px;
            }

            /* Properties Listing */
            .emirates-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .emirate-card .card-img {
                height: 80px;
            }

            .emirate-card h3 {
                font-size: 12px;
            }

            .property-card .card-image {
                height: 180px;
            }

            .property-card .card-content {
                padding: 12px;
            }

            .property-card .card-title {
                font-size: 14px;
            }

            .property-card .card-price {
                font-size: 16px;
            }

            .badge {
                padding: 4px 8px;
                font-size: 10px;
            }

            .category-header h3 {
                font-size: 18px;
            }

            /* Property Detail */
            .gallery-thumbs {
                grid-template-columns: repeat(3, 1fr);
                gap: 6px;
            }

            .thumb {
                height: 60px;
            }

            .highlights-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .highlight-item {
                padding: 10px;
            }

            .highlight-item h4 {
                font-size: 13px;
            }

            .highlight-item p {
                font-size: 12px;
            }

            .amenities-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .amenity-item {
                padding: 12px;
                flex-direction: row;
                justify-content: flex-start;
                gap: 12px;
            }

            .amenity-item i {
                font-size: 18px;
            }

            .amenity-item span {
                font-size: 13px;
            }

            .similar-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .floor-plans-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .property-info-card {
                padding: 20px;
            }

            .property-info-card h3 {
                font-size: 20px;
            }

            .content-section h2 {
                font-size: 22px;
            }

            .content-section p {
                font-size: 14px;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .benefit-card {
                padding: 20px 15px;
            }

            .benefit-card-icon {
                width: 50px;
                height: 50px;
            }

            .benefit-card-icon i {
                font-size: 20px;
            }

            .benefit-card h4 {
                font-size: 16px;
            }

            .benefit-card p {
                font-size: 13px;
            }

            .position-card {
                padding: 20px;
            }

            .position-card h3 {
                font-size: 18px;
            }

            .position-card p {
                font-size: 13px;
            }

            .application-form-wrapper {
                padding: 20px;
            }

            .file-upload {
                padding: 20px;
            }

            .file-upload i {
                font-size: 24px;
            }

            .step-number {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }

            .step-content h4 {
                font-size: 16px;
            }

            .careers-cta-content h2 {
                font-size: 22px;
            }

            .careers-cta-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .careers-cta-buttons .btn {
                width: 100%;
            }

            /* FAQs Page */
            .faq-item {
                padding: 15px;
            }

            .faq-question {
                font-size: 15px;
                padding-right: 30px;
            }

            .faq-answer {
                font-size: 13px;
            }

            /* Blogs Page */
            .blogs-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .blog-card .card-image {
                height: 180px;
            }

            .blog-card .card-content {
                padding: 15px;
            }

            .blog-card h3 {
                font-size: 16px;
            }

            /* List Property Page */
            .list-property-form {
                padding: 20px;
            }

            .list-property-info h3 {
                font-size: 20px;
            }

            /* Emirate Pages */
            .emirate-hero-content h1 {
                font-size: 26px;
            }

            .emirate-stat {
                flex: 0 0 100%;
            }

            .emirate-stat h3 {
                font-size: 28px;
            }
        }

        /* 360px - Small Mobile Breakpoint */
        @media (max-width: 360px) {
            /* General */
            .section-header h2 {
                font-size: 20px;
            }

            /* About Page */
            .about-intro-content h2 {
                font-size: 20px;
            }

            .about-intro-stats .stat-item h3 {
                font-size: 28px;
            }

            .mission-vision-card {
                padding: 15px;
            }

            .mission-vision-card h3 {
                font-size: 16px;
            }

            /* Contact Page */
            .contact-form-wrapper {
                padding: 15px;
            }

            .contact-card {
                padding: 12px;
            }

            .map-section {
                height: 220px;
            }

            .map-section iframe {
                height: 220px;
            }

            /* Properties */
            .emirates-grid {
                gap: 8px;
            }

            .emirate-card .card-img {
                height: 60px;
            }

            .emirate-card h3 {
                font-size: 11px;
            }

            .property-card .card-image {
                height: 150px;
            }

            /* Property Detail */
            .gallery-thumbs {
                grid-template-columns: repeat(3, 1fr);
                gap: 5px;
            }

            .thumb {
                height: 50px;
            }

            .property-info-card {
                padding: 15px;
            }

            .content-section h2 {
                font-size: 20px;
            }

            .position-card {
                padding: 15px;
            }

            .position-card h3 {
                font-size: 16px;
            }

            .application-form-wrapper {
                padding: 15px;
            }

            .step-number {
                width: 35px;
                height: 35px;
                font-size: 12px;
            }

            .careers-cta-content h2 {
                font-size: 20px;
            }

            /* FAQs */
            .faq-question {
                font-size: 14px;
            }

            /* Blogs */
            .blog-card .card-image {
                height: 150px;
            }

            .blog-card h3 {
                font-size: 15px;
            }

            /* Emirate Pages */
            .emirate-hero-content h1 {
                font-size: 22px;
            }
        }

        
        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0d1117;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .preloader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .preloader-sketch {
            width: 320px;
            height: 180px;
        }

        .preloader-sketch svg {
            width: 100%;
            height: 100%;
        }

        .sky-line {
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .sky-main {
            stroke: #2ecc71;
            stroke-dasharray: 1200;
            stroke-dashoffset: 1200;
            animation: drawSky 0.7s ease forwards 0.05s;
        }

        .sky-windows {
            stroke: rgba(46,204,113,0.4);
            stroke-width: 1;
            stroke-dasharray: 800;
            stroke-dashoffset: 800;
            animation: drawSky 0.5s ease forwards 0.3s;
        }

        .sky-accent {
            stroke: #58d68d;
            stroke-width: 1.5;
            stroke-dasharray: 400;
            stroke-dashoffset: 400;
            animation: drawSky 0.4s ease forwards 0.2s;
        }

        .sky-ground {
            stroke: rgba(46,204,113,0.3);
            stroke-width: 1;
            stroke-dasharray: 400;
            stroke-dashoffset: 400;
            animation: drawSky 0.4s ease forwards 0s;
        }

        .sky-glow {
            fill: none;
            stroke: rgba(46,204,113,0.15);
            stroke-width: 3;
            stroke-dasharray: 1200;
            stroke-dashoffset: 1200;
            animation: drawSky 0.7s ease forwards 0.05s;
            filter: blur(3px);
        }

        @keyframes drawSky {
            to { stroke-dashoffset: 0; }
        }

        .preloader-text {
            margin-top: 28px;
            color: rgba(255,255,255,0.6);
            font-size: 11px;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        .preloader-progress {
            width: 160px;
            height: 2px;
            background: rgba(255,255,255,0.08);
            border-radius: 2px;
            margin-top: 12px;
            overflow: hidden;
        }

        .preloader-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #2ecc71, #58d68d);
            border-radius: 2px;
            animation: progressFill 0.8s ease forwards 0.1s;
            width: 0;
        }

        @keyframes progressFill {
            to { width: 100%; }
        }
    