
        .service-meta {
            display: flex;
            justify-content: space-between;
            margin: 10px 0;
            font-size: 14px;
        }

        .service-meta i {
            color: #EC8021;
        }

        .price {
            font-weight: bold;
            color: #EC8021;
            margin: 10px 0;
            font-size: 18px;
        }

        .btn-wrap {
            display: flex;
            gap: 10px;
        }

        .theme-btn.small {
            padding: 8px 14px;
            font-size: 13px;
        }

        .theme-btn.style-two {
            background: #1E293B;
            color: #fff;
        }

        .amenity-box {
            background: #fff;
            padding: 30px 20px;
            border-radius: 10px;
            transition: 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .amenity-box i {
            font-size: 35px;
            color: #EC8021;
            margin-bottom: 15px;
        }

        .amenity-box h5 {
            margin-bottom: 10px;
        }

        .amenity-box:hover {
            transform: translateY(-5px);
        }

        .location-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
        }

        .location-card:hover {
            transform: translateY(-5px);
        }

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

        .location-meta {
            list-style: none;
            padding: 0;
            margin: 15px 0;
        }

        .location-meta li {
            margin-bottom: 8px;
            color: #555;
        }

        .location-meta i {
            color: #EC8021;
            margin-right: 8px;
        }

        .visit-cta-section {
            background: linear-gradient(135deg, #f5f7fa, #e4e7eb);
            color: #333;
        }

        .visit-cta-box h2 {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .visit-cta-box p {
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .theme-btn.style-two {
            background: #fff;
            color: #213F79;
            border: none;
        }

        .theme-btn.style-two i {
            margin-right: 5px;
        }
        /* Form Card */
        .custom-form {
            background: #fff;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        /* Title */
        .form-title {
            font-weight: 600;
            margin-bottom: 10px;
        }

        .form-subtitle {
            color: #777;
            margin-bottom: 25px;
        }

        /* Input Group */
        .form-group {
            margin-bottom: 20px;
        }

        .form-control,
        .form-select {
            height: 50px;
            border-radius: 8px;
            border: 1px solid #ddd;
            padding-left: 45px;
        }

        /* Icons inside input */
        .input-icon {
            position: relative;
        }

        .input-icon i {
            position: absolute;
            top: 26px;
            left: 15px;
            transform: translateY(-50%);
            color: #EC8021;
        }

        /* Textarea */
        textarea.form-control {
            height: auto;
            padding-top: 12px;
        }

        /* Button */
        .btn-custom {
            background: #EC8021;
            color: #fff;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            transition: 0.3s;
        }

        .btn-custom:hover {
            background: #d96f1b;
        }

        .form-check-input:checked {
            background-color: #EC8021;
            border-color: #EC8021;
        }

        .form-check {
            background: #f8f9fb;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            transition: 0.3s;
        }

        .form-check:hover {
            background: #EC8021;
            color: #fff;
        }

        .form-check:hover .form-check-input {
            border-color: #fff;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .custom-form {
                padding: 25px;
            }
        }
    