 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #f9f9f9;
            font-family: 'JCBEuro Roman Regular', sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        /* Font Classes */
        .font-jcb-bold-condensed {
            font-family: 'JCBEuro BoldCondensed Regular', sans-serif;
        }
        
        .font-jcb-bold {
            font-family: 'JCBEuro Bold Regular', sans-serif;
        }
        
        .font-jcb-roman {
            font-family: 'JCBEuro Roman Regular', sans-serif;
        }
        
        /* Utility Classes */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .text-center {
            text-align: center;
        }
        
        .text-left {
            text-align: left;
        }
        
        .text-right {
            text-align: right;
        }
        
        .uppercase {
            text-transform: uppercase;
        }
        
        .mb-4 {
            margin-bottom: 1rem;
        }
        
        .mb-6 {
            margin-bottom: 1.5rem;
        }
        
        .mb-8 {
            margin-bottom: 2rem;
        }
        
        .mb-12 {
            margin-bottom: 3rem;
        }
        
        .mt-16 {
            margin-top: 4rem;
        }
        
        .py-16 {
            padding-top: 4rem;
            padding-bottom: 4rem;
        }
        
        .px-6 {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
        
        /* Grid System */
        .grid {
            display: grid;
        }
        
        .grid-cols-2 {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .grid-cols-4 {
            grid-template-columns: repeat(4, 1fr);
        }
        
        .gap-4 {
            gap: 1rem;
        }
        
        .gap-6 {
            gap: 1.5rem;
        }
        
        .gap-8 {
            gap: 2rem;
        }
        
        .gap-12 {
            gap: 3rem;
        }
        
        /* Color Classes */
        .text-white {
            color: white;
        }
        
        .text-black {
            color: black;
        }
        
        .text-gray-300 {
            color: #d1d5db;
        }
        
        .text-gray-600 {
            color: #6b7280;
        }
        
        .text-gray-700 {
            color: #374151;
        }
        
        .bg-white {
            background-color: white;
        }
        
        .bg-gray-50 {
            background-color: #f9fafb;
        }
        
        .bg-glow-yellow {
            background-color: #FAA747;
        }
        
        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 12px 24px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-family: 'JCBEuro Bold Regular', sans-serif;
            text-transform: uppercase;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background-color: #FAA747;
            color: black;
        }
        
        .btn-primary:hover {
            background-color: black;
            color: white;
        }
        
        .btn-secondary {
            border: 2px solid #FAA747;
            color: black;
            background: transparent;
        }
        
        .btn-secondary:hover {
            background-color: #FAA747;
        }
        
        /* Typography */
        h1 {
            font-size: 3rem;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 2.5rem;
            line-height: 1.2;
        }
        
        h3 {
            font-size: 2rem;
            line-height: 1.2;
        }
        
        .text-xl {
            font-size: 1.25rem;
        }
        
        .text-3xl {
            font-size: 1.875rem;
        }
        
        .text-4xl {
            font-size: 2.25rem;
        }
        
        .text-5xl {
            font-size: 3rem;
        }
        
        /* Hero Section */
        .services-hero {
            background: #000;
            position: relative;
            overflow: hidden;
            padding: 100px 0 60px;
        }
        
        .services-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(250, 167, 71, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(250, 167, 71, 0.1) 0%, transparent 50%);
        }
        
        .services-hero .container {
            position: relative;
            z-index: 10;
        }
        
        /* Service Categories Section */
        .my-services-section {
            font-family: 'JCBEuro Roman Regular', Arial, sans-serif;
            color: #000;
            background: #f7f7f7;
            width: 100vw;
            max-width: 100%;
            margin-left: calc(-50vw + 50%);
            padding: 80px 0;
            box-sizing: border-box;
            position: relative;
            overflow: hidden;
        }
        
        .my-services-section * {
            box-sizing: border-box;
        }
        
        /* Section Title */
        .section-title {
            font-family: 'JCBEuro BoldCondensed Regular', Arial, sans-serif;
            font-size: 48px;
            text-transform: uppercase;
            text-align: center;
            color: #333;
            margin-bottom: 40px;
            position: relative;
            letter-spacing: 1px;
        }
        
        .section-title::after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background: #FAA747;
            margin: 20px auto 0;
        }
        
        /* Row System */
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px;
            justify-content: center;
        }
        
        .col-sm-6,
        .col-sm-4,
        .col-md-4,
        .col-lg-3 {
            padding: 0 10px;
            margin-bottom: 20px;
        }
        
        /* Responsive Grid */
        @media (min-width: 576px) {
            .col-sm-6 {
                flex: 0 0 50%;
                max-width: 50%;
            }
            .col-sm-4 {
                flex: 0 0 33.33%;
                max-width: 33.33%;
            }
        }
        
        @media (min-width: 768px) {
            .col-md-4 {
                flex: 0 0 33.33%;
                max-width: 33.33%;
            }
            .col-lg-3 {
                flex: 0 0 25%;
                max-width: 25%;
            }
        }
        
        /* Featured Link Card */
        .featured-link {
            display: block;
            text-decoration: none;
            color: #000;
            width: 100%;
        }
        
        .card-container {
            position: relative;
            background-color: #f8f8f8;
            overflow: hidden;
            padding: 20px 10px 60px;
            text-align: center;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .card-image {
            max-width: 100%;
            height: auto;
            margin: 0 auto;
            display: block;
            position: relative;
        }
        
        /* Small card image constraints */
        .small-card-image {
            max-height: 180px;
            object-fit: contain;
            width: auto;
            max-width: 100%;
        }

        /* Large card image constraints for consistency */
        .featured-link.large-570-380 .card-image {
            max-height: 250px;
            object-fit: contain;
            width: auto;
            max-width: 100%;
        }

        .title-block {
            position: absolute;
            left: 0;
            right: 0;
            margin: 0 auto;
            text-align: center;
            white-space: nowrap;
            bottom: 10px;
            z-index: 3;
            transition: all 0.8s ease;
        }
        
        .title-block h3 {
            font-family: 'JCBEuro BoldCondensed Regular', Arial, sans-serif;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.2;
            display: inline-block;
            color: #333;
            padding: 10px;
        }
        
        .title-block h3::after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background: #FAA747;
            margin: 5px auto 0;
        }
        
        .featured-link:hover .title-block h3 {
            color: #fff;
        }
        
        .featured-link:hover .title-block {
            bottom: 50%;
            transform: translateY(50%);
        }
        
        .featured-link.large-570-380 h3 {
            font-size: 35px;
        }
        
        .featured-link.small-270-180 h3 {
            font-size: 20px;
        }
        
        /* Card Overlay Effects */
        .card-container::after {
            content: "";
            position: absolute;
            top: 0; 
            left: 0; 
            right: 0; 
            bottom: 0;
            background: rgba(0,0,0,0);
            transition: background 0.3s ease;
            z-index: 2;
        }
        
        .my-services-section:hover .featured-link .card-container::after {
            background: rgba(217, 217, 217, 0.0);
        }
        
        .my-services-section .featured-link:hover .card-container::after {
            background: rgba(0, 0, 0, 0.6) !important;
        }
        
        /* Service Details Section */
        .service-details {
            background: #fff;
            padding: 80px 0;
        }
        
        .service-detail-card {
            background: #f8f8f8;
            padding: 40px;
            margin-bottom: 40px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        
        .service-detail-card:hover {
            border-left-color: #FAA747;
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-detail-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .service-detail-icon {
            width: 60px;
            height: 60px;
            background: #FAA747;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .service-detail-icon i {
            font-size: 30px;
            color: #000;
        }
        
        .service-specs-table {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .spec-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid #e5e5e5;
        }
        
        .spec-item:last-child {
            border-bottom: none;
        }
        
        .spec-item i {
            color: #FAA747;
            font-size: 16px;
            width: 20px;
        }
        
        .spec-label {
            font-weight: 600;
            color: #333;
            min-width: 120px;
        }
        
        .spec-value {
            color: #666;
        }
        
        /* Quick Specs Banner */
        .quick-specs-banner {
            background: #FAA747;
            padding: 60px 0;
            margin: 60px 0;
        }
        
        .quick-specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }
        
        .quick-spec {
            color: #000;
        }
        
        .quick-spec i {
            font-size: 40px;
            margin-bottom: 15px;
        }
        
        .quick-spec h3 {
            font-size: 24px;
            margin-bottom: 5px;
        }
        
        .quick-spec p {
            font-size: 14px;
            text-transform: uppercase;
        }
        
        /* Underline Accent */
        .w-20 {
            width: 5rem;
        }
        
        .h-1 {
            height: 0.25rem;
        }
        
        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Flex Utilities */
        .flex {
            display: flex;
        }
        
        .flex-col {
            flex-direction: column;
        }
        
        .flex-row {
            flex-direction: row;
        }
        
        .justify-center {
            justify-content: center;
        }
        
        .items-center {
            align-items: center;
        }
        
        /* Max Width */
        .max-w-3xl {
            max-width: 48rem;
        }
        
        .max-w-4xl {
            max-width: 56rem;
        }
        
        .max-w-6xl {
            max-width: 75rem;
        }
        
        /* Service Areas Section */
        .service-areas {
            padding: 80px 0;
            background: #f9fafb;
        }
        
        .emirates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
            margin-bottom: 48px;
        }
        
        .emirate-card {
            text-align: center;
            background: white;
            padding: 16px;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .emirate-card i {
            font-size: 24px;
            color: #FAA747;
            margin-bottom: 8px;
        }
        
        .emirate-card h4 {
            font-family: 'JCBEuro Bold Regular', sans-serif;
            font-size: 14px;
        }
        
        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
        }
        
        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
            }
        }
        
        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .services-hero {
                padding: 60px 0 40px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .text-5xl {
                font-size: 2rem;
            }
            
            .service-detail-card {
                padding: 25px;
            }
            
            .service-specs-table {
                grid-template-columns: 1fr;
            }
            
            .quick-specs-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .featured-link.large-570-380 h3,
            .featured-link.small-270-180 h3 {
                font-size: 18px !important;
            }
            
            .grid-cols-2 {
                grid-template-columns: 1fr;
            }
            
            .grid-cols-4 {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .emirates-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .section-title {
                font-size: 32px;
            }
        }
        
        /* Mobile - 678px: All cards same size, 2 per row */
        @media (max-width: 678px) {
            /* Make all cards behave the same */
            .my-services-section .featured-link {
                width: 100%;
                display: block;
            }
            
            /* Make all title fonts the same size */
            .my-services-section .featured-link h3 {
                font-size: 28px !important;
            }
            
            /* Control image sizing */
            .my-services-section .card-image {
                height: auto !important;
                width: auto !important;
                max-width: 100% !important;
                max-height: 200px !important;
                object-fit: contain !important;
            }
            
            .my-services-section .small-card-image {
                height: auto !important;
                width: auto !important;
                max-width: 100% !important;
                max-height: 200px !important;
                object-fit: contain !important;
            }
            
            /* Make all card containers the same */
            .my-services-section .card-container {
                padding: 20px 10px 60px !important;
                min-height: 280px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
            
            /* Set 2 cards per row for all */
            .my-services-section .row {
                display: flex !important;
                flex-wrap: wrap !important;
            }
            
            .my-services-section .col-sm-6,
            .my-services-section .col-sm-4,
            .my-services-section .col-md-4,
            .my-services-section .col-lg-3 {
                flex: 0 0 50% !important;
                max-width: 50% !important;
                padding: 0 10px !important;
                margin-bottom: 20px !important;
                display: block !important;
            }
        }
        
        /* Mobile - 575px: 1 card per row */
        @media (max-width: 575px) {
            /* Set 1 card per row for all */
            .my-services-section .col-sm-6,
            .my-services-section .col-sm-4,
            .my-services-section .col-md-4,
            .my-services-section .col-lg-3 {
                flex: 0 0 100% !important;
                max-width: 100% !important;
            }
            
            /* Ensure images don't get too large */
            .my-services-section .card-image,
            .my-services-section .small-card-image {
                max-width: 250px !important;
            }
        }
        
        @media (max-width: 480px) {
            .text-4xl {
                font-size: 1.5rem;
            }
            
            .text-3xl {
                font-size: 1.25rem;
            }
            
            .quick-specs-grid {
                grid-template-columns: 1fr;
            }
            
            .emirates-grid {
                grid-template-columns: 1fr;
            }
        }