        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tajawal', 'Cairo', sans-serif;
        }

        body {
            background: linear-gradient(145deg, #054239 0%, #002623 100%);
            min-height: 100vh;
            padding: 40px 20px;
            position: relative;
            overflow-x: hidden;
        }

        /* Forest Pattern */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 5% 10%, rgba(66, 129, 119, 0.2) 2px, transparent 2px),
                radial-gradient(circle at 95% 90%, rgba(185, 167, 121, 0.15) 2px, transparent 2px),
                radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 60px 60px, 80px 80px, 40px 40px;
            pointer-events: none;
        }

        .service-request-container {
            max-width: 1200px;
            margin: 0 auto;
            background: #edebe0;
            border-radius: 40px;
            box-shadow: 0 30px 70px rgba(0, 38, 35, 0.6);
            overflow: hidden;
            position: relative;
            border: 2px solid #b9a779;
            animation: forestGrow 0.9s cubic-bezier(0.23, 1, 0.32, 1);
        }

        @keyframes forestGrow {
            0% {
                opacity: 0;
                transform: scale(0.9) translateY(30px);
            }

            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* Decorative Forest Border */
        .service-request-container::before {
            content: '🌳🌲🌿🍂🌾🌳🌲🌿🍂🌾';
            position: absolute;
            top: -10px;
            left: 0;
            right: 0;
            font-size: 24px;
            opacity: 0.2;
            color: #054239;
            text-align: center;
            letter-spacing: 15px;
            white-space: nowrap;
            overflow: hidden;
        }

        .service-request-container::after {
            content: '🌾🍂🌿🌲🌳🌾🍂🌿🌲🌳';
            position: absolute;
            bottom: -10px;
            left: 0;
            right: 0;
            font-size: 24px;
            opacity: 0.2;
            color: #988561;
            text-align: center;
            letter-spacing: 15px;
            white-space: nowrap;
            overflow: hidden;
        }

        /* Header - Deep Forest */
        .service-header {
            background: linear-gradient(165deg, #002623 0%, #054239 70%, #428177 100%);
            color: #edebe0;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 5px solid #b9a779;
        }

        .service-header::before {
            content: '🌳🌲🌿🌳🌲🌿';
            position: absolute;
            top: -20px;
            left: -20px;
            font-size: 120px;
            opacity: 0.1;
            color: #edebe0;
            transform: rotate(-10deg);
        }

        .service-header::after {
            content: '🌾🌾🌾';
            position: absolute;
            bottom: -30px;
            right: -30px;
            font-size: 150px;
            opacity: 0.1;
            color: #b9a779;
            transform: rotate(15deg);
        }

        .service-header h1 {
            font-size: 3.2em;
            margin-bottom: 15px;
            position: relative;
            font-weight: 800;
            text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
            color: #edebe0;
            letter-spacing: 3px;
        }

        .service-header h1 i {
            color: #b9a779;
            margin-left: 20px;
            text-shadow: 0 0 15px rgba(185, 167, 121, 0.6);
            animation: leafShine 3s infinite;
        }

        @keyframes leafShine {

            0%,
            100% {
                transform: scale(1);
                text-shadow: 0 0 15px rgba(185, 167, 121, 0.6);
            }

            50% {
                transform: scale(1.1);
                text-shadow: 0 0 30px rgba(185, 167, 121, 0.9);
            }
        }

        .service-header p {
            font-size: 1.3em;
            opacity: 1;
            position: relative;
            max-width: 800px;
            margin: 20px auto 0;
            color: #edebe0;
            border-top: 2px solid #b9a779;
            border-bottom: 2px solid #b9a779;
            padding: 15px 25px;
            display: inline-block;
            background: rgba(0, 38, 35, 0.3);
            border-radius: 50px;
            backdrop-filter: blur(5px);
        }

        /* Stats Bar */
        .stats-bar {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
            padding: 20px;
            background: rgba(66, 129, 119, 0.2);
            border-radius: 20px;
            backdrop-filter: blur(5px);
            border: 1px solid #b9a779;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #edebe0;
            font-size: 1.1em;
        }

        .stat-item i {
            color: #b9a779;
            font-size: 1.3em;
        }

        .stat-number {
            font-weight: 800;
            color: #b9a779;
            margin-left: 5px;
            font-size: 1.2em;
        }

        /* Form Section */
        .form-section {
            padding: 50px;
            background: #edebe0;
            position: relative;
        }

        .form-section::before {
            content: '🍂🍃🌾🍂🍃🌾';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            opacity: 0.08;
            color: #988561;
            transform: rotate(10deg);
            white-space: nowrap;
        }

        /* Section Title */
        .section-title {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #b9a779;
            position: relative;
        }

        .section-title i {
            font-size: 1.8em;
            color: #428177;
            background: rgba(66, 129, 119, 0.1);
            padding: 12px;
            border-radius: 15px;
        }

        .section-title h2 {
            color: #002623;
            font-size: 1.8em;
            font-weight: 700;
            margin: 0;
        }

        .section-title span {
            color: #6b1f2a;
            margin-right: 10px;
            font-size: 0.8em;
            background: #edebe0;
            padding: 5px 15px;
            border-radius: 20px;
            border: 2px solid #b9a779;
        }

        .form-row {
            display: flex;
            gap: 25px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .form-group {
            flex: 1 1 280px;
            margin-bottom: 5px;
        }

        .form-group.full-width {
            flex: 1 1 100%;
        }

        label {
            display: block;
            margin-bottom: 12px;
            color: #002623;
            font-weight: 700;
            font-size: 1.05em;
            letter-spacing: 0.5px;
        }

        label i {
            color: #428177;
            margin-left: 12px;
            width: 22px;
            transition: all 0.4s;
        }

        label:hover i {
            transform: translateX(-5px) scale(1.1);
            color: #054239;
        }

        .required::after {
            content: '*';
            color: #6b1f2a;
            margin-right: 6px;
            font-weight: bold;
            font-size: 1.2em;
        }

        input,
        select,
        textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #d1c8a8;
            border-radius: 18px;
            font-size: 1.05em;
            transition: all 0.4s;
            font-family: 'Tajawal', 'Cairo', sans-serif;
            background: white;
            color: #161616;
        }

        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: #428177;
            box-shadow: 0 0 0 5px rgba(66, 129, 119, 0.1);
            background: white;
            transform: translateY(-2px);
        }

        textarea {
            resize: vertical;
            min-height: 150px;
        }

        /* Service Cards - Expanded Grid */
        .service-type {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        .service-card {
            border: 2px solid #d1c8a8;
            border-radius: 25px;
            padding: 25px 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: white;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '🌿';
            position: absolute;
            bottom: -20px;
            right: -20px;
            font-size: 60px;
            opacity: 0;
            transition: all 0.6s;
            transform: rotate(20deg);
            color: #428177;
        }

        .service-card:hover::before {
            opacity: 0.25;
            bottom: 5px;
            right: 5px;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #b9a779, #988561);
            transform: scaleX(0);
            transition: transform 0.5s;
        }

        .service-card:hover::after {
            transform: scaleX(1);
        }

        .service-card:hover {
            border-color: #428177;
            background: linear-gradient(145deg, white, #f8f6ee);
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(66, 129, 119, 0.25);
        }

        .service-card.selected {
            border-color: #054239;
            background: linear-gradient(145deg, #f0f1e6, #eae8db);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(5, 66, 57, 0.3);
            border-width: 3px;
        }

        .service-card i {
            font-size: 2.8em;
            color: #428177;
            margin-bottom: 20px;
            transition: all 0.5s;
        }

        .service-card.selected i {
            color: #054239;
            transform: scale(1.15) rotate(5deg);
        }

        .service-card h3 {
            font-size: 1.15em;
            color: #002623;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .service-card p {
            font-size: 0.8em;
            color: #6b1f2a;
            margin-top: 5px;
            opacity: 0.8;
        }

        /* Sub-services */
        .sub-services {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }

        .sub-service-tag {
            background: white;
            border: 2px solid #d1c8a8;
            border-radius: 30px;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .sub-service-tag:hover {
            border-color: #428177;
            background: rgba(66, 129, 119, 0.05);
            transform: scale(1.02);
        }

        .sub-service-tag i {
            color: #428177;
            font-size: 1.1em;
        }

        .sub-service-tag span {
            color: #002623;
            font-weight: 600;
        }

        .sub-service-tag.selected {
            background: linear-gradient(145deg, #b9a779, #988561);
            border-color: #6b1f2a;
        }

        .sub-service-tag.selected i,
        .sub-service-tag.selected span {
            color: white;
        }

        /* Priority Options */
        .priority-options {
            display: flex;
            gap: 25px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .priority-option {
            flex: 1;
            min-width: 130px;
        }

        .priority-option input[type="radio"] {
            display: none;
        }

        .priority-option label {
            display: block;
            padding: 16px 20px;
            text-align: center;
            border: 2px solid #d1c8a8;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s;
            margin-bottom: 0;
            background: white;
            color: #3d3a3b;
            font-weight: 700;
            font-size: 1.05em;
        }

        .priority-option input[type="radio"]:checked+label {
            border-color: #b9a779;
            background: linear-gradient(145deg, #b9a779, #988561);
            color: white;
            box-shadow: 0 8px 20px rgba(185, 167, 121, 0.4);
            transform: scale(1.05);
        }

        /* File Upload */
        .file-upload {
            border: 3px dashed #988561;
            border-radius: 25px;
            padding: 40px;
            text-align: center;
            cursor: pointer;
            transition: all 0.5s;
            background: rgba(185, 167, 121, 0.03);
            position: relative;
        }

        .file-upload:hover {
            border-color: #428177;
            background: rgba(66, 129, 119, 0.08);
            transform: scale(1.02);
        }

        .file-upload i {
            font-size: 3.5em;
            color: #428177;
            margin-bottom: 20px;
            transition: all 0.5s;
        }

        .file-upload:hover i {
            transform: translateY(-8px) scale(1.1);
            color: #054239;
        }

        /* Submit Button */
        .submit-btn {
            background: linear-gradient(145deg, #b9a779, #6b1f2a);
            color: white;
            border: none;
            padding: 20px 50px;
            font-size: 1.4em;
            font-weight: 800;
            border-radius: 60px;
            cursor: pointer;
            transition: all 0.6s;
            width: 100%;
            margin-top: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            letter-spacing: 2px;
            box-shadow: 0 15px 30px rgba(107, 31, 42, 0.3);
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '🌾🌿🍂';
            position: absolute;
            left: -50px;
            font-size: 35px;
            opacity: 0.3;
            transition: all 0.7s;
        }

        .submit-btn::after {
            content: '🍂🌿🌾';
            position: absolute;
            right: -50px;
            font-size: 35px;
            opacity: 0.3;
            transition: all 0.7s;
        }

        .submit-btn:hover {
            background: linear-gradient(145deg, #6b1f2a, #4a151e);
            transform: translateY(-5px);
            box-shadow: 0 25px 45px rgba(107, 31, 42, 0.5);
        }

        .submit-btn:hover::before {
            left: 20px;
            opacity: 0.8;
        }

        .submit-btn:hover::after {
            right: 20px;
            opacity: 0.8;
        }

        /* Contact Info */
        .contact-info {
            margin-top: 50px;
            padding: 30px;
            background: linear-gradient(145deg, #002623, #054239);
            border-radius: 25px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            border: 2px solid #b9a779;
            position: relative;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #edebe0;
            padding: 12px 25px;
            background: rgba(185, 167, 121, 0.15);
            border-radius: 50px;
            transition: all 0.4s;
            border: 1px solid rgba(185, 167, 121, 0.3);
        }

        .contact-item:hover {
            background: rgba(185, 167, 121, 0.3);
            transform: translateY(-3px);
            border-color: #b9a779;
        }

        .contact-item i {
            color: #b9a779;
            font-size: 1.3em;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .service-header h1 {
                font-size: 2.5em;
            }

            .service-type {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .form-section {
                padding: 35px 25px;
            }

            .service-header h1 {
                font-size: 2em;
            }

            .service-type {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-title h2 {
                font-size: 1.4em;
            }
        }

        @media (max-width: 480px) {
            .service-type {
                grid-template-columns: 1fr;
            }

            .priority-options {
                flex-direction: column;
            }

            .contact-info {
                flex-direction: column;
            }

            .contact-item {
                justify-content: center;
            }
        }